[#2784] Fix typo in bugfix 5f92810f

This commit is contained in:
bendikro 2016-10-31 20:20:44 +01:00 committed by Calum Lind
parent 20bae1bf90
commit 6de2813c3d

View File

@ -119,7 +119,7 @@ class Core(CorePluginBase):
command = os.path.expanduser(command) command = os.path.expanduser(command)
cmd_args = [torrent_id, torrent_name, download_location] cmd_args = [torrent_id, torrent_name, download_location]
if windows_check: if windows_check():
# Escape ampersand on windows (see #2784) # Escape ampersand on windows (see #2784)
cmd_args = [cmd_arg.replace("&", "^^^&") for cmd_arg in cmd_args] cmd_args = [cmd_arg.replace("&", "^^^&") for cmd_arg in cmd_args]