diff options
author | zoidberg10 <zoidberg@mujmail.cz> | 2012-01-15 01:10:21 +0100 |
---|---|---|
committer | zoidberg10 <zoidberg@mujmail.cz> | 2012-01-15 01:10:21 +0100 |
commit | be3abec5255e91bbeb0484053302f95156ad7621 (patch) | |
tree | 369d97fc9546612bebfdf883894855a0844cd815 /tests/HosterPluginTester.py | |
parent | fixed attachment file path (diff) | |
download | pyload-be3abec5255e91bbeb0484053302f95156ad7621.tar.xz |
plugin tester links
Diffstat (limited to 'tests/HosterPluginTester.py')
-rw-r--r-- | tests/HosterPluginTester.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/HosterPluginTester.py b/tests/HosterPluginTester.py index 2972e28fe..32b67d93e 100644 --- a/tests/HosterPluginTester.py +++ b/tests/HosterPluginTester.py @@ -99,8 +99,8 @@ for l in links: flags[l] = flag.strip() urls.append(l) - elif len(l.split(" ")) == 2: - name, hash = l.split(" ") + elif len(l.rsplit(" ", 1)) == 2: + name, hash = l.rsplit(" ", 1) HosterPluginTester.files[name] = hash |