diff options
author | Jukka Jylänki <jujjyl@gmail.com> | 2013-04-06 21:46:46 +0300 |
---|---|---|
committer | Jukka Jylänki <jujjyl@gmail.com> | 2013-04-11 10:42:15 +0300 |
commit | 829add1ee972bc3f68cc065c5e9b69b8a6e3fa5c (patch) | |
tree | 7fba00a7060d2cc32c7c9dd05adbfde714640743 /tools | |
parent | 1c4f763de44601a8b5a50fd5f78a8fedd314c131 (diff) |
Fix typo.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/response_file.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/response_file.py b/tools/response_file.py index f6226783..cb368d47 100644 --- a/tools/response_file.py +++ b/tools/response_file.py @@ -9,7 +9,7 @@ def create_response_file(args, directory): #print >> sys.stderr, "Creating response file '%s'" % response_filename args = map(lambda p: p.replace(' ', '').replace('\\', '\\\\').replace('"', '\\"'), args) response_fd.write(' '.join(args)) - response_fd.close + response_fd.close() return '@' + response_filename # Reads and deletes a .rsp file, and returns the list of cmdline params found in the file. |