##// END OF EJS Templates
cmdutil: fix bug in finddate() implementation
Dirkjan Ochtman -
r9668:2c24471d default
parent child Browse files
Show More
@@ -1030,7 +1030,7 def finddate(ui, repo, date):
1030 1030 def prep(ctx, fns):
1031 1031 d = ctx.date()
1032 1032 if df(d[0]):
1033 results[rev] = d
1033 results[ctx.rev()] = d
1034 1034
1035 1035 for ctx in walkchangerevs(repo, m, {'rev': None}, prep):
1036 1036 rev = ctx.rev()
General Comments 0
You need to be logged in to leave comments. Login now