Mercurial > public > mercurial-scm > hg-stable
diff mercurial/context.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 | e6d3dad71e44 |
children | 369c8f9453c2 |
line wrap: on
line diff
--- a/mercurial/context.py Mon Jan 04 21:54:46 2016 -0800 +++ b/mercurial/context.py Thu Dec 31 08:16:59 2015 +0000 @@ -389,8 +389,8 @@ extra = {} if branch: extra['branch'] = encoding.fromlocal(branch) - ctx = memctx(repo, parents, text, files, getfilectx, user, - date, extra, editor) + ctx = memctx(repo, parents, text, files, getfilectx, user, + date, extra, editor) return ctx class changectx(basectx):