TOOLS/file2string.py: fix standalone invocation

This commit is contained in:
wm4 2017-01-05 16:45:26 +01:00
parent 737e3b1758
commit 0b9f1e0323
1 changed files with 1 additions and 1 deletions

View File

@ -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)