From 0402cd882a05b22ddb4d3e10bf816f5165e1e11e Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Tue, 9 Sep 2014 15:39:15 -0700 Subject: [PATCH] Add space between project path and branch in repo status. Currently, paths longer than 39 chars have no space after them so it looks like this: project path/branch master Change-Id: I4c1bb13648ac099ade8a8d4ebafa04131571f842 --- project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.py b/project.py index 68d7421f..c6a91d05 100644 --- a/project.py +++ b/project.py @@ -788,7 +788,7 @@ class Project(object): out = StatusColoring(self.config) if not output_redir == None: out.redirect(output_redir) - out.project('project %-40s', self.relpath + '/') + out.project('project %-40s', self.relpath + '/ ') branch = self.CurrentBranch if branch is None: