changeset 4410:de00a238a9ad

remove unnecessary brackets
author Richard Jones <richard@users.sourceforge.net>
date Mon, 09 Aug 2010 04:52:16 +0000
parents 698a1e0504b0
children 39660ba47b7c
files roundup/backends/rdbms_common.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/roundup/backends/rdbms_common.py	Mon Aug 09 04:46:02 2010 +0000
+++ b/roundup/backends/rdbms_common.py	Mon Aug 09 04:52:16 2010 +0000
@@ -2729,7 +2729,7 @@
         if propname == 'content':
             try:
                 return self.db.getfile(self.classname, nodeid, None)
-            except IOError, (strerror):
+            except IOError, strerror:
                 # BUG: by catching this we donot see an error in the log.
                 return 'ERROR reading file: %s%s\n%s\n%s'%(
                         self.classname, nodeid, poss_msg, strerror)

Roundup Issue Tracker: http://roundup-tracker.org/