diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-09 13:26:28 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-09 13:26:28 +0100 |
commit | eab7389888eb97ddcdf174acce717f45157ed079 (patch) | |
tree | 29dc9cb25fe62ea8e1c5f5f26263ee56d960e824 /portato/db/sql.py | |
parent | cffc4dbc7529d761600bcaf5fbc63bdb308b3194 (diff) | |
download | portato-eab7389888eb97ddcdf174acce717f45157ed079.tar.gz portato-eab7389888eb97ddcdf174acce717f45157ed079.tar.bz2 portato-eab7389888eb97ddcdf174acce717f45157ed079.zip |
SQLDatabase.populate needs a regexp
Diffstat (limited to 'portato/db/sql.py')
-rw-r--r-- | portato/db/sql.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/db/sql.py b/portato/db/sql.py index cac5c97..b46374e 100644 --- a/portato/db/sql.py +++ b/portato/db/sql.py @@ -211,7 +211,7 @@ class SQLDatabase (Database): if cat: connection.execute("DELETE FROM packages WHERE cat = ?", (cat,)) connection.commit() - self.populate(cat+"/", connection = connection) + self.populate(cat+"/*", connection = connection) else: connection.execute("DELETE FROM packages") connection.commit() |