Skip to content

Commit

Permalink
Replace directory space
Browse files Browse the repository at this point in the history
  • Loading branch information
Mirko Brombin committed Oct 16, 2017
1 parent 19dc7d0 commit c8b9826
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bottles/wine.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ 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
self.file_src = file_src.replace(" ", "\\ ")

def run(self):
os.chdir(self.working_prefix_dir)
subprocess.call("WINEPREFIX="+self.working_prefix_dir+" wine "+self.file_src, shell=True)
Expand Down

0 comments on commit c8b9826

Please sign in to comment.