Fix console ui not liking paths with backslashes on windows (#1293)

This commit is contained in:
John Garland 2010-06-08 01:25:21 +10:00
parent cfe547b31a
commit 4b1d60c727

View file

@ -109,7 +109,7 @@ class BaseCommand(object):
return self.__doc__
def split(self, text):
return shlex.split(text)
return shlex.split(text, posix=not deluge.common.windows_check())
def create_parser(self):
return OptionParser(prog = self.name,