# HG changeset patch # User Peter Arrenbrecht # Date 1254379810 -7200 # Node ID 0d3c1aa9d5de3154f350b180aabd22bde3db7f58 # Parent 5987183d6e59bef5e82d10744a4ce059bbc08cba extdiff: fix defaulting to "diff" if no --program is given diff -r 5987183d6e59 -r 0d3c1aa9d5de hgext/extdiff.py --- a/hgext/extdiff.py Wed Sep 30 18:47:33 2009 -0500 +++ b/hgext/extdiff.py Thu Oct 01 08:50:10 2009 +0200 @@ -173,11 +173,11 @@ that revision is compared to the working directory, and, when no revisions are specified, the working directory files are compared to its parent.''' - program = opts['program'] or 'diff' - if opts['program']: - option = opts['option'] - else: - option = opts['option'] or ['-Npru'] + program = opts.get('program') + option = opts.get('option') + if not program: + program = 'diff' + option = option or ['-Npru'] return dodiff(ui, repo, program, option, pats, opts) cmdtable = {