Index: git_cl.py
|
diff --git a/git_cl.py b/git_cl.py
|
index e46b66097520ee24b77202dac0c2c6b818f66406..68d4339c98b924e3c03caf3d4a441d94175d7b4c 100755
|
--- a/git_cl.py
|
+++ b/git_cl.py
|
@@ -795,7 +795,7 @@ or verify this branch is set up to track another (via the --track argument to
|
if upstream_git_obj is None:
|
if self.GetBranch() is None:
|
print >> sys.stderr, (
|
- 'ERROR: unable to dertermine current branch (detached HEAD?)')
|
+ 'ERROR: unable to determine current branch (detached HEAD?)')
|
else:
|
print >> sys.stderr, (
|
'ERROR: no upstream branch')
|
@@ -1705,10 +1705,10 @@ def CMDstatus(parser, args):
|
cl = Changelist(auth_config=auth_config)
|
print
|
print 'Current branch:',
|
+ print cl.GetBranch()
|
if not cl.GetIssue():
|
- print 'no issue assigned.'
|
+ print 'No issue assigned.'
|
return 0
|
- print cl.GetBranch()
|
print 'Issue number: %s (%s)' % (cl.GetIssue(), cl.GetIssueURL())
|
if not options.fast:
|
print 'Issue description:'
|
|