--- 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