Skip to content

Commit

Permalink
Fixed typo in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jun 18, 2012
1 parent eedb1d5 commit 55eb17e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snowberry/plugins/launcher.py
Expand Up @@ -248,7 +248,7 @@ def q2p(s): return '\\\\\\\"' + s + '\\\\\\\"'
sh = file(shFile, 'w')
print >> sh, '#!/bin/sh'
print >> sh, "cd %s" % (paths.quote(os.getcwd()))
print >> sh, "%s @%s" % (paths.quote(engineBin), responseFile.replace('\\', '\\ '))
print >> sh, "%s @%s" % (paths.quote(engineBin), responseFile.replace(' ', '\\ '))
sh.close()
os.chmod(shFile, 0744)
engineBin = paths.quote(shFile)
Expand Down

0 comments on commit 55eb17e

Please sign in to comment.