diff options
author | Victor Häggqvist <[email protected]> | 2015-08-06 02:10:39 +0200 |
---|---|---|
committer | Victor Häggqvist <[email protected]> | 2015-08-06 02:10:39 +0200 |
commit | 88b1c4019f7d82dcb9b23e6f69ec55b037c47977 (patch) | |
tree | de9280fb13345180876b314a686102f4de93edfb | |
parent | e68dde6afcce0990effd7b00038bc8b5e79bf057 (diff) |
fix typov0.7.5
-rw-r--r-- | xboomx/bin/xboomx_update.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xboomx/bin/xboomx_update.py b/xboomx/bin/xboomx_update.py index a49f126..f8cbc00 100644 --- a/xboomx/bin/xboomx_update.py +++ b/xboomx/bin/xboomx_update.py @@ -24,7 +24,7 @@ def main(): dbitem.count = dbitem.count + 1 session.add(dbitem) except NoResultFound: - dbi = PathItem(name=item, couunt=0) + dbi = PathItem(name=item, count=0) session.add(dbi) session.commit() |