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
This commit is contained in:
Jakub Vrana 2014-09-09 15:39:15 -07:00 committed by David Pursehouse
parent 936183a492
commit 0402cd882a

View File

@ -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: