hgext/convert/cvsps.py
changeset 43503 313e3a279828
parent 43117 8ff1ecfadcd1
child 43787 be8552f25cab
--- a/hgext/convert/cvsps.py	Thu Nov 07 03:59:22 2019 -0800
+++ b/hgext/convert/cvsps.py	Thu Nov 07 13:18:19 2019 -0500
@@ -54,10 +54,8 @@
         self.__dict__.update(entries)
 
     def __repr__(self):
-        items = (
-            r"%s=%r" % (k, self.__dict__[k]) for k in sorted(self.__dict__)
-        )
-        return r"%s(%s)" % (type(self).__name__, r", ".join(items))
+        items = ("%s=%r" % (k, self.__dict__[k]) for k in sorted(self.__dict__))
+        return "%s(%s)" % (type(self).__name__, ", ".join(items))
 
 
 class logerror(Exception):