fix name error while debugging stable
authorSylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 01 Dec 2009 19:29:56 +0100
branchstable
changeset 3958 505025eb0d37
parent 3957 4a71754bf5eb
child 3959 e6ecaf93c0ba
child 3960 8cbf18c703be
fix name error while debugging
server/sources/native.py
--- a/server/sources/native.py	Tue Dec 01 17:38:35 2009 +0100
+++ b/server/sources/native.py	Tue Dec 01 19:29:56 2009 +0100
@@ -351,7 +351,7 @@
     def manual_insert(self, results, table, session):
         """insert given result into a temporary table on the system source"""
         if server.DEBUG & server.DBG_RQL:
-            print '  manual insertion of', res, 'into', table
+            print '  manual insertion of', results, 'into', table
         if not results:
             return
         query_args = ['%%(%s)s' % i for i in xrange(len(results[0]))]