# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1512861221 -19800 # Node ID a274c4b698f22492bfabe5770196ea7c5a3de763 # Parent 576ba8194fa8bcec976c294b8347861562b0f7ab py3: handle keyword arguments correctly in archival.py Differential Revision: https://phab.mercurial-scm.org/D1625 diff -r 576ba8194fa8 -r a274c4b698f2 mercurial/archival.py --- a/mercurial/archival.py Sun Dec 10 02:52:48 2017 +0530 +++ b/mercurial/archival.py Sun Dec 10 04:43:41 2017 +0530 @@ -126,7 +126,7 @@ def __init__(self, *args, **kw): timestamp = None if 'timestamp' in kw: - timestamp = kw.pop('timestamp') + timestamp = kw.pop(r'timestamp') if timestamp is None: self.timestamp = time.time() else: