projects
/
zzz-pokedex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e68f43a
)
Fix `pokedex load` with empty tables.
author
Eevee
<git@veekun.com>
Sun, 3 Apr 2011 08:23:48 +0000
(
01:23
-0700)
committer
Eevee
<git@veekun.com>
Sun, 3 Apr 2011 08:23:48 +0000
(
01:23
-0700)
pokedex/db/load.py
patch
|
blob
|
history
diff --git
a/pokedex/db/load.py
b/pokedex/db/load.py
index
b57d935
..
6a548b8
100644
(file)
--- a/
pokedex/db/load.py
+++ b/
pokedex/db/load.py
@@
-213,6
+213,8
@@
def load(session, tables=[], directory=None, drop_tables=False, verbose=False, s
new_rows = []
def insert_and_commit():
+ if not new_rows:
+ return
session.connection().execute(insert_stmt, new_rows)
session.commit()
new_rows[:] = []