hgext/journal.py
changeset 43554 9f70512ae2cf
parent 43115 4aa72cdf616f
child 46114 59fa3890d40a
--- a/hgext/journal.py	Sun Nov 10 07:30:14 2019 -0800
+++ b/hgext/journal.py	Fri Nov 08 11:19:20 2019 -0800
@@ -149,7 +149,7 @@
 
     Note that by default entries go from most recent to oldest.
     """
-    order = kwargs.pop(r'order', max)
+    order = kwargs.pop('order', max)
     iterables = [iter(it) for it in iterables]
     # this tracks still active iterables; iterables are deleted as they are
     # exhausted, which is why this is a dictionary and why each entry also
@@ -214,8 +214,8 @@
 
 class journalentry(
     collections.namedtuple(
-        r'journalentry',
-        r'timestamp user command namespace name oldhashes newhashes',
+        'journalentry',
+        'timestamp user command namespace name oldhashes newhashes',
     )
 ):
     """Individual journal entry