Mercurial > hgsubversion
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 197:43d56e973c3c | 198:df4611050286 |
|---|---|
| 524 self.authorforsvnauthor(rev.author), | 524 self.authorforsvnauthor(rev.author), |
| 525 date, | 525 date, |
| 526 extra) | 526 extra) |
| 527 new_hash = self.repo.commitctx(current_ctx) | 527 new_hash = self.repo.commitctx(current_ctx) |
| 528 | 528 |
| 529 self.ui.status(our_util.describe_commit(new_hash, branch)) | 529 our_util.describe_commit(self.ui, new_hash, branch) |
| 530 if (rev.revnum, branch) not in self.revmap: | 530 if (rev.revnum, branch) not in self.revmap: |
| 531 self.add_to_revmap(rev.revnum, branch, new_hash) | 531 self.add_to_revmap(rev.revnum, branch, new_hash) |
| 532 # now we handle branches that need to be committed without any files | 532 # now we handle branches that need to be committed without any files |
| 533 for branch in self.commit_branches_empty: | 533 for branch in self.commit_branches_empty: |
| 534 ha = self.get_parent_revision(rev.revnum, branch) | 534 ha = self.get_parent_revision(rev.revnum, branch) |
| 551 del_all_files, | 551 del_all_files, |
| 552 self.authorforsvnauthor(rev.author), | 552 self.authorforsvnauthor(rev.author), |
| 553 date, | 553 date, |
| 554 extra) | 554 extra) |
| 555 new_hash = self.repo.commitctx(current_ctx) | 555 new_hash = self.repo.commitctx(current_ctx) |
| 556 self.ui.status(our_util.describe_commit(new_hash, branch)) | 556 our_util.describe_commit(self.ui, new_hash, branch) |
| 557 if (rev.revnum, branch) not in self.revmap: | 557 if (rev.revnum, branch) not in self.revmap: |
| 558 self.add_to_revmap(rev.revnum, branch, new_hash) | 558 self.add_to_revmap(rev.revnum, branch, new_hash) |
| 559 self.clear_current_info() | 559 self.clear_current_info() |
| 560 | 560 |
| 561 def authorforsvnauthor(self, author): | 561 def authorforsvnauthor(self, author): |
