mq: use bytes() instead of str() to encode statusentries for writing
authorAugie Fackler <augie@google.com>
Wed, 17 Jan 2018 22:05:37 -0500
changeset 35844 522f868680ca
parent 35843 512113eb9d26
child 35845 be923ce44d6a
mq: use bytes() instead of str() to encode statusentries for writing Differential Revision: https://phab.mercurial-scm.org/D1903
hgext/mq.py
--- a/hgext/mq.py	Wed Jan 17 22:05:02 2018 -0500
+++ b/hgext/mq.py	Wed Jan 17 22:05:37 2018 -0500
@@ -700,7 +700,7 @@
                 fp.write("%s\n" % i)
             fp.close()
         if self.applieddirty:
-            writelist(map(str, self.applied), self.statuspath)
+            writelist(map(bytes, self.applied), self.statuspath)
             self.applieddirty = False
         if self.seriesdirty:
             writelist(self.fullseries, self.seriespath)