Mercurial > public > mercurial-scm > hg-stable
diff mercurial/extensions.py @ 27637:b502138f5faa
cleanup: remove superfluous space after space after equals (python)
author | timeless <timeless@mozdev.org> |
---|---|
date | Thu, 31 Dec 2015 08:16:59 +0000 |
parents | 060f83d219b9 |
children | 96bfd2875213 |
line wrap: on
line diff
--- a/mercurial/extensions.py Mon Jan 04 21:54:46 2016 -0800 +++ b/mercurial/extensions.py Thu Dec 31 08:16:59 2015 +0000 @@ -45,7 +45,7 @@ '''return module with given extension name''' mod = None try: - mod = _extensions[name] + mod = _extensions[name] except KeyError: for k, v in _extensions.iteritems(): if k.endswith('.' + name) or k.endswith('/' + name):