diff options
author | Shawn O. Pearce <sop@google.com> | 2009-04-17 10:27:49 -0700 |
---|---|---|
committer | Shawn O. Pearce <sop@google.com> | 2009-04-17 10:28:25 -0700 |
commit | 006734b7981289856f71501f3685fd0ee6d27a6d (patch) | |
tree | 426fba3c9549db88cb58363c5c4ba121406e7b6f /project.py | |
parent | 350cde4c4bec5e7b5776cf52d61da600af3efc31 (diff) | |
download | git-repo-006734b7981289856f71501f3685fd0ee6d27a6d.tar.gz |
Remove confusing message from repo sync output
Someone pointed out this message isn't always the truth; so we
shouldn't print it. The code path is executed when there are
published commits, yet our output talks about unpublished ones.
Signed-off-by: Shawn O. Pearce <sop@google.com>
Diffstat (limited to 'project.py')
-rw-r--r-- | project.py | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -637,7 +637,6 @@ class Project(object): | |||
637 | "branch %s is published but is now %d commits behind", | 637 | "branch %s is published but is now %d commits behind", |
638 | branch.name, | 638 | branch.name, |
639 | len(upstream_gain)) | 639 | len(upstream_gain)) |
640 | syncbuf.info(self, "consider merging or rebasing the unpublished commits") | ||
641 | return | 640 | return |
642 | elif upstream_gain: | 641 | elif upstream_gain: |
643 | # We can fast-forward safely. | 642 | # We can fast-forward safely. |