From 0b9f1e03239eb0410cfefbc5ad9da8f8218d8d9f Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 5 Jan 2017 16:45:26 +0100 Subject: TOOLS/file2string.py: fix standalone invocation --- TOOLS/file2string.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'TOOLS/file2string.py') diff --git a/TOOLS/file2string.py b/TOOLS/file2string.py index 6f068caa43..90c9e03368 100755 --- a/TOOLS/file2string.py +++ b/TOOLS/file2string.py @@ -28,4 +28,4 @@ def file2string(infilename, infile, outfile): if __name__ == "__main__": with open(sys.argv[1], 'rb') as infile: - main(sys.argv[1], infile, sys.stdout) + file2string(sys.argv[1], infile, sys.stdout) -- cgit v1.2.3