Mercurial > hg-stable
diff mercurial/commands.py @ 17308:2e0805f59736 stable
log: make opts entries optional (issue2423)
author | Patrick Mezard <patrick@mezard.eu> |
---|---|
date | Wed, 01 Aug 2012 15:49:00 +0200 |
parents | e51d4aedace9 |
children | 7124f984dc8d |
line wrap: on
line diff
--- a/mercurial/commands.py Tue Jul 31 19:47:54 2012 +0200 +++ b/mercurial/commands.py Wed Aug 01 15:49:00 2012 +0200 @@ -4074,7 +4074,7 @@ getrenamed = templatekw.getrenamedfn(repo, endrev=endrev) df = False - if opts["date"]: + if opts.get("date"): df = util.matchdate(opts["date"]) branches = opts.get('branch', []) + opts.get('only_branch', [])