Mercurial > hg
diff hgext/rebase.py @ 8117:2b30d8488819
remove unnecessary outer parenthesis in if-statements
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Wed, 22 Apr 2009 01:39:47 +0200 |
parents | 6ee71f78497c |
children | bbc24c0753a0 |
line wrap: on
line diff
--- a/hgext/rebase.py Wed Apr 22 09:11:46 2009 +0200 +++ b/hgext/rebase.py Wed Apr 22 01:39:47 2009 +0200 @@ -77,7 +77,7 @@ raise error.ParseError( 'rebase', _('cannot use collapse with continue or abort')) - if (srcf or basef or destf): + if srcf or basef or destf: raise error.ParseError('rebase', _('abort and continue do not allow specifying revisions'))