diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-09-04 20:23:50 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-09-04 20:23:50 +0200 |
commit | 6590f2c91d4896d22820d9dd30dac211b7fadb32 (patch) | |
tree | 07bace92af908d890c13762663048b49ba02a851 /pyLoadCore.py | |
parent | hoster fixes, new tray icon (diff) | |
download | pyload-6590f2c91d4896d22820d9dd30dac211b7fadb32.tar.xz |
links.txt default to queue
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-x | pyLoadCore.py | 4 |
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() |