summaryrefslogtreecommitdiffstats
path: root/pyLoadCore.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-09-04 20:23:50 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-09-04 20:23:50 +0200
commit6590f2c91d4896d22820d9dd30dac211b7fadb32 (patch)
tree07bace92af908d890c13762663048b49ba02a851 /pyLoadCore.py
parenthoster fixes, new tray icon (diff)
downloadpyload-6590f2c91d4896d22820d9dd30dac211b7fadb32.tar.xz
links.txt default to queue
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-xpyLoadCore.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py
index 5d28c534e..073cab191 100755
--- a/pyLoadCore.py
+++ b/pyLoadCore.py
@@ -258,7 +258,7 @@ class Core(object):
f = open(link_file, "rb")
links = [x.strip() for x in f.readlines() if x.strip()]
if links:
- self.server_methods.add_package("links.txt", links)
+ self.server_methods.add_package("links.txt", links, 1)
f.close()
try:
f = open(link_file, "wb")
@@ -271,7 +271,7 @@ class Core(object):
f = open(link_file, "rb")
links = [x.strip() for x in f.readlines() if x.strip()]
if links:
- self.server_methods.add_package("links.txt", links)
+ self.server_methods.add_package("links.txt", links, 1)
f.close()
f = open(link_file, "wb")
f.close()