diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-07-22 18:44:54 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-07-22 18:44:54 +0200 |
commit | d6bc45cd39d82f4d5412055a018371b56351e2f5 (patch) | |
tree | 6b048acf902a27f613b598149c403456292dae87 /pyload/database/FileDatabase.py | |
parent | guess media types by name (diff) | |
download | pyload-d6bc45cd39d82f4d5412055a018371b56351e2f5.tar.xz |
implemented media type filter
Diffstat (limited to 'pyload/database/FileDatabase.py')
-rw-r--r-- | pyload/database/FileDatabase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/database/FileDatabase.py b/pyload/database/FileDatabase.py index 7765cd744..1dc35e028 100644 --- a/pyload/database/FileDatabase.py +++ b/pyload/database/FileDatabase.py @@ -426,7 +426,7 @@ class FileMethods(DatabaseMethods): return [r[0] for r in self.c] @queue - def restartFailed(self, owner): + def restartFailed(self, owner=None): # status=queued, where status in failed, aborted, temp offline self.c.execute("UPDATE files SET dlstatus=3, error='' WHERE dlstatus IN (7, 11, 12)") |