diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-05-10 21:52:59 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-05-10 21:52:59 +0200 |
commit | 141a87a537baa322d20c54cd7632a2401d7ffe9d (patch) | |
tree | c1eab088418e030049fd831a8f3f921c06f90f68 /module | |
parent | rewritten cli, closed #275, #304 (diff) | |
download | pyload-141a87a537baa322d20c54cd7632a2401d7ffe9d.tar.xz |
fix cli
Diffstat (limited to 'module')
-rw-r--r-- | module/cli/ManageFiles.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/cli/ManageFiles.py b/module/cli/ManageFiles.py index 1d04c4c49..f0f9ec93a 100644 --- a/module/cli/ManageFiles.py +++ b/module/cli/ManageFiles.py @@ -30,7 +30,7 @@ class ManageFiles(Handler): """ possibility to manage queue/collector """ def init(self): - self.target = 1 #queue + self.target = 1 #queue and collector are swapped self.pos = 0 #position in queue self.package = -1 #choosen package self.mode = "" # move/delete/restart @@ -201,4 +201,4 @@ class ManageFiles(Handler): return ret else: - return [int(x) for x in inp.split(",")]
\ No newline at end of file + return [int(x) for x in inp.split(",")] |