3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-06 14:13:23 +00:00

Python 3.x issues

This commit is contained in:
Christoph M. Wintersteiger 2015-10-30 06:31:16 -07:00
parent 64fa2db3ff
commit 28ba92b298
3 changed files with 4 additions and 4 deletions

View file

@ -191,7 +191,7 @@ def mk_zip():
os.chdir(DIST_DIR)
zfname = '%s.zip' % dist_path
ZIPOUT = zipfile.ZipFile(zfname, 'w', zipfile.ZIP_DEFLATED)
os.path.walk(dist_path, mk_zip_visitor, '*')
os.walk(dist_path, mk_zip_visitor, '*')
if is_verbose():
print("Generated '%s'" % zfname)
except: