aboutsummaryrefslogtreecommitdiff
path: root/tools/response_file.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/response_file.py')
-rw-r--r--tools/response_file.py2
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.