From 773f2a27d9c47145d2a95ed0cfa104f82ba0ec1c Mon Sep 17 00:00:00 2001 Message-Id: <773f2a27d9c47145d2a95ed0cfa104f82ba0ec1c.1746535372.git.mdw@distorted.org.uk> From: Mark Wooding Date: Mon, 5 Feb 2007 22:18:22 +0000 Subject: [PATCH] Add missing spaces in warnings about default remote Organization: Straylight/Edgeware From: Pavel Roskin Signed-off-by: Pavel Roskin --- stgit/stack.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stgit/stack.py b/stgit/stack.py index ee1bf1f..7f3b65d 100644 --- a/stgit/stack.py +++ b/stgit/stack.py @@ -419,7 +419,7 @@ class Series(StgitObject): return value elif 'origin' in git.remotes_list(): print 'Notice: no parent remote declared for stack "%s", defaulting to "origin".' \ - 'Consider setting "branch.%s.remote" with "git repo-config".' \ + ' Consider setting "branch.%s.remote" with "git repo-config".' \ % (self.__name, self.__name) return 'origin' else: @@ -434,7 +434,7 @@ class Series(StgitObject): return value elif git.rev_parse('heads/origin'): print 'Notice: no parent branch declared for stack "%s", defaulting to "heads/origin".' \ - 'Consider setting "branch.%s.merge" with "git repo-config".' \ + ' Consider setting "branch.%s.merge" with "git repo-config".' \ % (self.__name, self.__name) return 'heads/origin' else: -- [mdw]