##// END OF EJS Templates
debugcommands: finish moving `extendeddateformats` from util to dateutil...
Matt Harbison -
r44330:38d6aa76 default
parent child Browse files
Show More
@@ -653,7 +653,7 b' def debugdata(ui, repo, file_, rev=None,'
653 653 def debugdate(ui, date, range=None, **opts):
654 654 """parse and display a date"""
655 655 if opts["extended"]:
656 d = dateutil.parsedate(date, util.extendeddateformats)
656 d = dateutil.parsedate(date, dateutil.extendeddateformats)
657 657 else:
658 658 d = dateutil.parsedate(date)
659 659 ui.writenoi18n(b"internal: %d %d\n" % d)
General Comments 0
You need to be logged in to leave comments. Login now