# HG changeset patch # User Augie Fackler # Date 1516244737 18000 # Node ID 522f868680ca213a06e2255cb71c5c78dc1046c2 # Parent 512113eb9d264674b593ad037496b5009a49c3d3 mq: use bytes() instead of str() to encode statusentries for writing Differential Revision: https://phab.mercurial-scm.org/D1903 diff -r 512113eb9d26 -r 522f868680ca 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)