Code

Remove some nasty debugging code.
authorgmcm <gmcm@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 20 Sep 2002 19:33:18 +0000 (19:33 +0000)
committergmcm <gmcm@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 20 Sep 2002 19:33:18 +0000 (19:33 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1203 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/backends/back_metakit.py

index df09c3e91292c3dc27342790353228966df7fae7..eeb93dbb5380be389127bb53d72d7f1476b14dac 100755 (executable)
@@ -108,11 +108,7 @@ class _Database(hyperdb.Database):
             self.tables.append(name=cl.classname)
     def addjournal(self, tablenm, nodeid, action, params, creator=None,
                 creation=None):
-        try:
-            tblid = self.tables.find(name=tablenm)
-        except ValueError:
-            open('/u/roundup-sf/roundup/error.out','w').write('\nself.tables=%s, tablenm=%s\n' % (self.tables.structure(), tablenm))
-            raise
+        tblid = self.tables.find(name=tablenm)
         if tblid == -1:
             tblid = self.tables.append(name=tablenm)
         if creator is None: