Mercurial > hg
changeset 7667:bd5c37d792e6
cmdutil.logmessage: options should be optional
author | Alexander Solovyov <piranha@piranha.org.ua> |
---|---|
date | Mon, 19 Jan 2009 12:38:54 +0200 |
parents | 2ad81e9b075b |
children | ca39dbc589c9 |
files | mercurial/cmdutil.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/cmdutil.py Mon Jan 19 00:36:32 2009 +0100 +++ b/mercurial/cmdutil.py Mon Jan 19 12:38:54 2009 +0200 @@ -68,8 +68,8 @@ def logmessage(opts): """ get the log message according to -m and -l option """ - message = opts['message'] - logfile = opts['logfile'] + message = opts.get('message') + logfile = opts.get('logfile') if message and logfile: raise util.Abort(_('options --message and --logfile are mutually '