Submitter | phabricator |
---|---|
Date | Dec. 16, 2019, 6:31 a.m. |
Message ID | <1b63ebca979258ebc3d5b326dcd6677e@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/43855/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py --- a/mercurial/debugcommands.py +++ b/mercurial/debugcommands.py @@ -653,7 +653,7 @@ def debugdate(ui, date, range=None, **opts): """parse and display a date""" if opts["extended"]: - d = dateutil.parsedate(date, util.extendeddateformats) + d = dateutil.parsedate(date, dateutil.extendeddateformats) else: d = dateutil.parsedate(date) ui.writenoi18n(b"internal: %d %d\n" % d)