Mercurial > hgsubversion
diff hg_delta_editor.py @ 198:df4611050286
Output consolidation; decrease the ‘Fetching...’ message to debug level.
author | Dan Villiom Podlaski Christiansen <danchr@cs.au.dk> |
---|---|
date | Thu, 12 Feb 2009 15:10:42 +0100 |
parents | 43d56e973c3c |
children | 907c160c6289 |
line wrap: on
line diff
--- a/hg_delta_editor.py +++ b/hg_delta_editor.py @@ -526,7 +526,7 @@ class HgChangeReceiver(delta.Editor): extra) new_hash = self.repo.commitctx(current_ctx) - self.ui.status(our_util.describe_commit(new_hash, branch)) + our_util.describe_commit(self.ui, new_hash, branch) if (rev.revnum, branch) not in self.revmap: self.add_to_revmap(rev.revnum, branch, new_hash) # now we handle branches that need to be committed without any files @@ -553,7 +553,7 @@ class HgChangeReceiver(delta.Editor): date, extra) new_hash = self.repo.commitctx(current_ctx) - self.ui.status(our_util.describe_commit(new_hash, branch)) + our_util.describe_commit(self.ui, new_hash, branch) if (rev.revnum, branch) not in self.revmap: self.add_to_revmap(rev.revnum, branch, new_hash) self.clear_current_info()