Fixed another splitting bug

This commit is contained in:
Asmageddon 2012-05-29 12:51:01 +02:00
parent d589823f4a
commit 0a9a1db942
1 changed files with 1 additions and 2 deletions

View File

@ -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):