Skip to content

Commit 2c659b1

Browse files
author
Gordon B. McMillan
committed
Remove some nasty debugging code.
1 parent 7422abd commit 2c659b1

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

roundup/backends/back_metakit.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,7 @@ def addclass(self, cl):
108108
self.tables.append(name=cl.classname)
109109
def addjournal(self, tablenm, nodeid, action, params, creator=None,
110110
creation=None):
111-
try:
112-
tblid = self.tables.find(name=tablenm)
113-
except ValueError:
114-
open('/u/roundup-sf/roundup/error.out','w').write('\nself.tables=%s, tablenm=%s\n' % (self.tables.structure(), tablenm))
115-
raise
111+
tblid = self.tables.find(name=tablenm)
116112
if tblid == -1:
117113
tblid = self.tables.append(name=tablenm)
118114
if creator is None:

0 commit comments

Comments
 (0)