summaryrefslogtreecommitdiffstats
path: root/pyLoadCli.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2012-01-04 17:23:13 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2012-01-04 17:23:13 +0100
commit18466eb7f8f3cd4ca9a0824074d2ff454939fce6 (patch)
treef22c67aab99d500581e73d5ad555d2d70c2a2bd2 /pyLoadCli.py
parentfs_encode fix (diff)
downloadpyload-18466eb7f8f3cd4ca9a0824074d2ff454939fce6.tar.xz
some fixes
Diffstat (limited to 'pyLoadCli.py')
-rwxr-xr-xpyLoadCli.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyLoadCli.py b/pyLoadCli.py
index 97e64dfee..d68b5faec 100755
--- a/pyLoadCli.py
+++ b/pyLoadCli.py
@@ -289,14 +289,14 @@ class Cli:
print _("Please use this syntax: add <Package name> <link> <link2> ...")
return
- self.client.addPackage(args[0], args[1:], Destination.Queue)
+ self.client.addPackage(args[0], args[1:], Destination.Queue, "")
elif command == "add_coll":
if len(args) < 2:
print _("Please use this syntax: add <Package name> <link> <link2> ...")
return
- self.client.addPackage(args[0], args[1:], Destination.Collector)
+ self.client.addPackage(args[0], args[1:], Destination.Collector, "")
elif command == "del_file":
self.client.deleteFiles([int(x) for x in args])