Mercurial > public > mercurial-scm > hg-stable
diff mercurial/commands.py @ 9198:061eeb602354
coding style: use a space after comma
I left a cases like 'lambda x,y:' alone -- the lack of a space does
not bother me as much when the variables are single letters.
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Wed, 22 Jul 2009 23:12:54 +0200 |
parents | a05aa192a00a |
children | 3f650f6aa130 |
line wrap: on
line diff
--- a/mercurial/commands.py Wed Jul 22 23:08:32 2009 +0200 +++ b/mercurial/commands.py Wed Jul 22 23:12:54 2009 +0200 @@ -663,9 +663,9 @@ ui.status(_('created new head\n')) if ui.debugflag: - ui.write(_('committed changeset %d:%s\n') % (rev,hex(node))) + ui.write(_('committed changeset %d:%s\n') % (rev, hex(node))) elif ui.verbose: - ui.write(_('committed changeset %d:%s\n') % (rev,short(node))) + ui.write(_('committed changeset %d:%s\n') % (rev, short(node))) def copy(ui, repo, *pats, **opts): """mark files as copied for the next commit