summaryrefslogtreecommitdiffstats
path: root/project.py
diff options
context:
space:
mode:
authorJakub Vrana <jakubvrana@google.com>2014-09-09 15:39:15 -0700
committerDavid Pursehouse <david.pursehouse@sonymobile.com>2015-03-11 07:42:17 +0000
commit0402cd882a05b22ddb4d3e10bf816f5165e1e11e (patch)
tree17b4d948f9b27f8475d07600315de0733c6cb994 /project.py
parent936183a492373f8a54b6ecaa806e252d08b793c5 (diff)
downloadgit-repo-0402cd882a05b22ddb4d3e10bf816f5165e1e11e.tar.gz
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
Diffstat (limited to 'project.py')
-rw-r--r--project.py2
1 files changed, 1 insertions, 1 deletions
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):
788 out = StatusColoring(self.config) 788 out = StatusColoring(self.config)
789 if not output_redir == None: 789 if not output_redir == None:
790 out.redirect(output_redir) 790 out.redirect(output_redir)
791 out.project('project %-40s', self.relpath + '/') 791 out.project('project %-40s', self.relpath + '/ ')
792 792
793 branch = self.CurrentBranch 793 branch = self.CurrentBranch
794 if branch is None: 794 if branch is None: