diff options
author | Armin <Armin@Armin-PC.diedering.lan> | 2015-04-12 18:34:55 +0200 |
---|---|---|
committer | Armin <Armin@Armin-PC.diedering.lan> | 2015-04-12 18:34:55 +0200 |
commit | 3a82d5f45ffed16d654220efa92ef6b75ea3163b (patch) | |
tree | 8ab6550e7afa428240b105e77d2e204713eb257c /pyload/datatype | |
parent | fix, fix and more fixes (diff) | |
download | pyload-3a82d5f45ffed16d654220efa92ef6b75ea3163b.tar.xz |
import fixes + code-cleanup
Diffstat (limited to 'pyload/datatype')
-rw-r--r-- | pyload/datatype/File.py | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/pyload/datatype/File.py b/pyload/datatype/File.py index a3ae82ec2..0445e8089 100644 --- a/pyload/datatype/File.py +++ b/pyload/datatype/File.py @@ -9,21 +9,21 @@ from time import sleep, time from threading import RLock statusMap = { - "finished": 0, - "offline": 1, - "online": 2, - "queued": 3, - "skipped": 4, - "waiting": 5, + "finished" : 0, + "offline" : 1, + "online" : 2, + "queued" : 3, + "skipped" : 4, + "waiting" : 5, "temp. offline": 6, - "starting": 7, - "failed": 8, - "aborted": 9, - "decrypting": 10, - "custom": 11, - "downloading": 12, - "processing": 13, - "unknown": 14, + "starting" : 7, + "failed" : 8, + "aborted" : 9, + "decrypting" : 10, + "custom" : 11, + "downloading" : 12, + "processing" : 13, + "unknown" : 14, } |