Commit 34fdfd8d authored by Greg Ward's avatar Greg Ward

Remove debug print on filename with NUL byte.

parent c100107a
......@@ -120,7 +120,6 @@ class ZipInfo:
null_byte = filename.find(chr(0))
if null_byte >= 0:
filename = filename[0:null_byte]
print "File name %s contains a suspicious null byte!" % filename
# This is used to ensure paths in generated ZIP files always use
# forward slashes as the directory separator, as required by the
# ZIP format specification.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment