diff options
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 |