rpms/terminator/F-13 terminator-0.14-catch_multiple_exceptions.patch, NONE, 1.1

Steven Fernandez lonetwin at fedoraproject.org
Wed Mar 10 06:23:15 UTC 2010


Author: lonetwin

Update of /cvs/pkgs/rpms/terminator/F-13
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv671

Added Files:
	terminator-0.14-catch_multiple_exceptions.patch 
Log Message:
- Fixes 567861. Added a patch to correctly catch multiple exceptions. Not
  sending upstream since the current upstream is a complete rewrite and this
  problem does not exist there.


terminator-0.14-catch_multiple_exceptions.patch:
 terminator.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- NEW FILE terminator-0.14-catch_multiple_exceptions.patch ---
diff -up terminator-0.14/terminatorlib/terminator.py.orig terminator-0.14/terminatorlib/terminator.py
--- terminator-0.14/terminatorlib/terminator.py.orig	2010-03-10 11:21:25.000000000 +0530
+++ terminator-0.14/terminatorlib/terminator.py	2010-03-10 11:23:22.164499238 +0530
@@ -1032,7 +1032,7 @@ class Terminator:
           if matcher (current_geo, possible_geo, best_geo):
             best_index = i
             best_geo = possible_geo
-        except TypeError, KeyError:
+        except (TypeError, KeyError):
           # Not being called on a Paned widget
           pass
     #if best_index is None:



More information about the scm-commits mailing list