Skip to content

Commit

Permalink
Issue #19
Browse files Browse the repository at this point in the history
  • Loading branch information
Mirko Brombin committed Oct 23, 2017
1 parent 585cf62 commit 13d6f7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bottles/wine.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class T_Software(threading.Thread):
def __init__(self, working_prefix_dir, file_src):
threading.Thread.__init__(self)
self.working_prefix_dir = working_prefix_dir
self.file_src = file_src.replace(" ", "\\ ")
self.file_src = re.escape(file_src)

def run(self):
os.chdir(self.working_prefix_dir)
Expand Down

0 comments on commit 13d6f7c

Please sign in to comment.