[#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 5394ac5604
commit df88c82265
1 changed files with 1 additions and 1 deletions

View File

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