summaryrefslogtreecommitdiffstats
path: root/pyload/datatype
diff options
context:
space:
mode:
authorGravatar Armin <Armin@Armin-PC.diedering.lan> 2015-04-12 18:34:55 +0200
committerGravatar Armin <Armin@Armin-PC.diedering.lan> 2015-04-12 18:34:55 +0200
commit3a82d5f45ffed16d654220efa92ef6b75ea3163b (patch)
tree8ab6550e7afa428240b105e77d2e204713eb257c /pyload/datatype
parentfix, fix and more fixes (diff)
downloadpyload-3a82d5f45ffed16d654220efa92ef6b75ea3163b.tar.xz
import fixes + code-cleanup
Diffstat (limited to 'pyload/datatype')
-rw-r--r--pyload/datatype/File.py28
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,
}