mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-17 05:47:50 +00:00
Fix #2174 : Console: Unable to add torrent via URL
This commit is contained in:
parent
5cb85472c6
commit
b67bae31ba
@ -40,6 +40,7 @@ import logging
|
||||
import optparse
|
||||
import re
|
||||
import locale
|
||||
import shlex
|
||||
|
||||
from twisted.internet import defer, reactor
|
||||
|
||||
@ -266,7 +267,7 @@ class BaseCommand(object):
|
||||
def split(self, text):
|
||||
if deluge.common.windows_check():
|
||||
text = text.replace('\\', '\\\\')
|
||||
result = re.split(r"(?<!\\) ", text)
|
||||
result = shlex.split(text)
|
||||
for i, s in enumerate(result):
|
||||
result[i] = s.replace(r'\ ', ' ')
|
||||
result = filter(lambda s: s != '', result)
|
||||
|
Loading…
x
Reference in New Issue
Block a user