--- a/hgext/convert/cvsps.py Wed Nov 13 20:42:13 2019 +0100
+++ b/hgext/convert/cvsps.py Sun Dec 01 18:46:10 2019 -0500
@@ -110,7 +110,7 @@
_scache = {}
def scache(s):
- b"return a shared version of a string"
+ """return a shared version of a string"""
return _scache.setdefault(s, s)
ui.status(_(b'collecting CVS rlog\n'))
@@ -711,7 +711,7 @@
# Sort files in each changeset
def entitycompare(l, r):
- b'Mimic cvsps sorting order'
+ """Mimic cvsps sorting order"""
l = l.file.split(b'/')
r = r.file.split(b'/')
nl = len(l)