mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Fixed another splitting bug
This commit is contained in:
parent
d589823f4a
commit
0a9a1db942
1 changed files with 1 additions and 2 deletions
|
@ -166,8 +166,7 @@ class BaseCommand(object):
|
|||
result = re.split(r"(?<!\\) ", text)
|
||||
for i, s in enumerate(result):
|
||||
result[i] = s.replace(r'\ ', ' ')
|
||||
if result == ['']:
|
||||
result = []
|
||||
result = filter(lambda s: s != '', result)
|
||||
return result
|
||||
|
||||
def create_parser(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue