Signed-off-by: Pavel Roskin <proski@xxxxxxx> --- stgit/stack.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stgit/stack.py b/stgit/stack.py index 6f0f67a..96863c6 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: - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html