From 006734b7981289856f71501f3685fd0ee6d27a6d Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Fri, 17 Apr 2009 10:27:49 -0700 Subject: [PATCH] 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 --- project.py | 1 - 1 file changed, 1 deletion(-) diff --git a/project.py b/project.py index 6621f1cb..b19ab5fb 100644 --- a/project.py +++ b/project.py @@ -637,7 +637,6 @@ class Project(object): "branch %s is published but is now %d commits behind", branch.name, len(upstream_gain)) - syncbuf.info(self, "consider merging or rebasing the unpublished commits") return elif upstream_gain: # We can fast-forward safely.