Mercurial > public > mercurial-scm > hg
diff hgext/mq.py @ 16687:e34106fa0dc3
cleanup: "raise SomeException()" -> "raise SomeException"
author | Brodie Rao <brodie@sf.io> |
---|---|
date | Sat, 12 May 2012 16:00:58 +0200 |
parents | 525fdb738975 |
children | cfb6682961b8 |
line wrap: on
line diff
--- a/hgext/mq.py Sat May 12 16:00:57 2012 +0200 +++ b/hgext/mq.py Sat May 12 16:00:58 2012 +0200 @@ -322,7 +322,7 @@ try: gitmode = ui.configbool('mq', 'git', None) if gitmode is None: - raise error.ConfigError() + raise error.ConfigError self.gitmode = gitmode and 'yes' or 'no' except error.ConfigError: self.gitmode = ui.config('mq', 'git', 'auto').lower()