py3: use raw string for file open mode
authorGregory Szorc <gregory.szorc@gmail.com>
Sun, 11 Feb 2018 10:52:13 -0800
changeset 36036 788b2e8530ae
parent 36035 95791b275b73
child 36037 8de90e006c78
py3: use raw string for file open mode Otherwise the module importer rewrites it to bytes on Python 3, which angers Python 3. Differential Revision: https://phab.mercurial-scm.org/D2137
mercurial/archival.py
--- a/mercurial/archival.py	Sun Feb 11 10:49:00 2018 -0800
+++ b/mercurial/archival.py	Sun Feb 11 10:52:13 2018 -0800
@@ -218,7 +218,7 @@
                 dest.tell()
             except (AttributeError, IOError):
                 dest = tellable(dest)
-        self.z = zipfile.ZipFile(dest, 'w',
+        self.z = zipfile.ZipFile(dest, r'w',
                                  compress and zipfile.ZIP_DEFLATED or
                                  zipfile.ZIP_STORED)