diff options
author | Federico Di Gregorio <fog@initd.org> | 2011-08-10 18:36:24 +0200 |
---|---|---|
committer | Federico Di Gregorio <fog@initd.org> | 2011-08-10 18:36:24 +0200 |
commit | a59d88c703fb254f5f0c1e57f55d28fd8690a648 (patch) | |
tree | b054f4f9a54cc13118f86ffe2369b62cd9b95430 /lib/extras.py | |
parent | 479bdf7458fcf766c3e5d66c07772235c73c36eb (diff) | |
parent | 1861e0010d2a40c32a9793c5358304786f2b0d1d (diff) | |
download | psycopg2-a59d88c703fb254f5f0c1e57f55d28fd8690a648.tar.gz |
Merge remote-tracking branch 'piro/devel' into devel
Diffstat (limited to 'lib/extras.py')
-rw-r--r-- | lib/extras.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extras.py b/lib/extras.py index a36faa8..0d7bc98 100644 --- a/lib/extras.py +++ b/lib/extras.py @@ -275,7 +275,7 @@ class NamedTupleCursor(_cursor): def executemany(self, query, vars): self.Record = None - return _cursor.executemany(self, vars) + return _cursor.executemany(self, query, vars) def callproc(self, procname, vars=None): self.Record = None |