Skip to content

Commit 7277bea

Browse files
author
Richard Jones
committed
remove unnecessary brackets
1 parent 489baad commit 7277bea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roundup/backends/rdbms_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2729,7 +2729,7 @@ def get(self, nodeid, propname, default=_marker, cache=1):
27292729
if propname == 'content':
27302730
try:
27312731
return self.db.getfile(self.classname, nodeid, None)
2732-
except IOError, (strerror):
2732+
except IOError, strerror:
27332733
# BUG: by catching this we donot see an error in the log.
27342734
return 'ERROR reading file: %s%s\n%s\n%s'%(
27352735
self.classname, nodeid, poss_msg, strerror)

0 commit comments

Comments
 (0)