mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +00:00
Fix console ui not liking paths with backslashes on windows (#1293)
This commit is contained in:
parent
cfe547b31a
commit
4b1d60c727
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ class BaseCommand(object):
|
||||||
return self.__doc__
|
return self.__doc__
|
||||||
|
|
||||||
def split(self, text):
|
def split(self, text):
|
||||||
return shlex.split(text)
|
return shlex.split(text, posix=not deluge.common.windows_check())
|
||||||
|
|
||||||
def create_parser(self):
|
def create_parser(self):
|
||||||
return OptionParser(prog = self.name,
|
return OptionParser(prog = self.name,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue