diff options
author | Helmut Grohne <helmut@subdivi.de> | 2013-03-02 22:33:39 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2013-03-02 22:33:39 +0100 |
commit | 66ec2694b5ccab2d3cec94e0dc1de3c4160128fe (patch) | |
tree | f299e69f816e58a8b5ec66ec53560088f236f4be /update_sharing.py | |
parent | e296fa30b78d8d52aba74c4a069bc7e061e96dd2 (diff) | |
download | debian-dedup-66ec2694b5ccab2d3cec94e0dc1de3c4160128fe.tar.gz |
update_sharing: wrong database name
Diffstat (limited to 'update_sharing.py')
-rwxr-xr-x | update_sharing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update_sharing.py b/update_sharing.py index 92da945..dd12e5b 100755 --- a/update_sharing.py +++ b/update_sharing.py @@ -38,7 +38,7 @@ def process_pkgdict(cursor, pkgdict): add_values(cursor, insert_key, pkgnumfiles, pkgsize) def main(): - db = sqlite3.connect("big.sqlite3") + db = sqlite3.connect("test.sqlite3") cur = db.cursor() cur.execute("DELETE FROM sharing;") readcur = db.cursor() |