gzz-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gzz-commits] storm test.py


From: Benja Fallenstein
Subject: [Gzz-commits] storm test.py
Date: Wed, 23 Apr 2003 06:58:36 -0400

CVSROOT:        /cvsroot/storm
Module name:    storm
Changes by:     Benja Fallenstein <address@hidden>      03/04/23 06:58:35

Modified files:
        .              : test.py 

Log message:
        apply fix from fenfire

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/storm/storm/test.py.diff?tr1=1.4&tr2=1.5&r1=text&r2=text

Patches:
Index: storm/test.py
diff -u storm/test.py:1.4 storm/test.py:1.5
--- storm/test.py:1.4   Tue Apr 22 09:01:21 2003
+++ storm/test.py       Wed Apr 23 06:58:34 2003
@@ -170,9 +170,10 @@
     if exceptions:
         print "Java stack traces:"
         for name, exc in exceptions:
-            print 75 * '-'
-            print name
-            exc['exception'][1].printStackTrace()
+            if hasattr(exc['exception'][1], 'printStackTrace'):
+                print 75 * '-'
+                print name
+                exc['exception'][1].printStackTrace()
             
         print 75 * '-'
         print




reply via email to

[Prev in Thread] Current Thread [Next in Thread]