From 8be344192c74d3d78bef282e86ea43a4408cf64b Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 4 Feb 2019 16:21:42 +0100 Subject: [PATCH] Quick pass to update script for python3 --- master_unpack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/master_unpack.py b/master_unpack.py index 394a101..ea00f06 100644 --- a/master_unpack.py +++ b/master_unpack.py @@ -133,7 +133,7 @@ try: f = file(filename, "wb") shutil.copyfileobj(zf, f) - os.chmod(filename, 0644) + os.chmod(filename, 0o644) zf.close() z.close()