Mercurial > public > mercurial-scm > evolve
diff hgext/evolve.py @ 944:b71b563b17de
evolve: more compact output in the wire protocol case
We made the wording more similar and use less line. The writing operation is
usually fast so we do not needs a specific line for it.
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Tue, 20 May 2014 13:45:52 -0700 |
parents | 010c7e4aa820 |
children | cf4dcf49d998 |
line wrap: on
line diff
--- a/hgext/evolve.py Tue May 20 23:57:48 2014 -0700 +++ b/hgext/evolve.py Tue May 20 13:45:52 2014 -0700 @@ -2254,13 +2254,12 @@ if not markers: repo.ui.status("OBSEXC: no marker to push\n") elif remote.capable('_evoext_pushobsmarkers_0'): - repo.ui.status("OBSEXC: writing %i markers\n" % len(markers)) obsdata = pushobsmarkerStringIO() _encodemarkersstream(obsdata, markers) obsdata.seek(0) obsdata.ui = repo.ui - repo.ui.status("OBSEXC: pushing %i bytes\n" - % len(obsdata.getvalue())) + repo.ui.status("OBSEXC: pushing %i markers (%i bytes)\n" + % (len(markers), len(obsdata.getvalue()))) remote.evoext_pushobsmarkers_0(obsdata) repo.ui.progress('OBSEXC', None) else: