##// END OF EJS Templates
fuzz: remove debug prints from revlog_corpus.py...
Augie Fackler -
r44247:98eb12ea default draft
parent child Browse files
Show More
@@ -1,4 +1,4 b''
1 from __future__ import absolute_import, print_function
1 from __future__ import absolute_import
2
2
3 import argparse
3 import argparse
4 import os
4 import os
@@ -16,9 +16,6 b' contributing = os.path.join('
16 reporoot, '.hg', 'store', 'data', 'contrib', 'fuzz', 'mpatch.cc.i'
16 reporoot, '.hg', 'store', 'data', 'contrib', 'fuzz', 'mpatch.cc.i'
17 )
17 )
18
18
19 print(changelog, os.path.exists(changelog))
20 print(contributing, os.path.exists(contributing))
21
22 with zipfile.ZipFile(args.out[0], "w", zipfile.ZIP_STORED) as zf:
19 with zipfile.ZipFile(args.out[0], "w", zipfile.ZIP_STORED) as zf:
23 if os.path.exists(changelog):
20 if os.path.exists(changelog):
24 with open(changelog) as f:
21 with open(changelog) as f:
General Comments 0
You need to be logged in to leave comments. Login now