summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2326c3f)
raw | patch | inline | side by side (parent: 2326c3f)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 19 Sep 2002 03:39:48 +0000 (03:39 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 19 Sep 2002 03:39:48 +0000 (03:39 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1195 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/backends/rdbms_common.py | patch | blob | history |
index 42d832d5f42d54f44de90d5771984c25053f01ba..3eb9ab2fd3fdb7726e0683502ceb87458512d4de 100644 (file)
-# $Id: rdbms_common.py,v 1.3 2002-09-19 02:37:41 richard Exp $
+# $Id: rdbms_common.py,v 1.4 2002-09-19 03:39:48 richard Exp $
# standard python modules
import sys, os, time, re, errno, weakref, copy
'''
cursor = self.conn.cursor()
sql = 'update ids set num=%s where name=%s'%(self.arg, self.arg)
- vals = (setid, spec.classname)
+ vals = (setid, classname)
if __debug__:
print >>hyperdb.DEBUG, 'setid', (self, sql, vals)
cursor.execute(sql, vals)