summaryrefslogtreecommitdiffstats
path: root/subcmds/sync.py
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@sonymobile.com>2013-03-06 00:46:45 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2013-03-06 00:46:45 +0000
commit3ee6ffd07852c184feef5afd695d80a3f9a0db79 (patch)
tree7e6e44db4a785a52579589f81de88fb16564c1f3 /subcmds/sync.py
parent28db6ffef48138fc97aca9fbf0d774ac26a41c70 (diff)
parent2f9e7e40c44acae37d0c263c212956ef6038c35b (diff)
downloadgit-repo-3ee6ffd07852c184feef5afd695d80a3f9a0db79.tar.gz
Merge "Fix: Missing spaces in printed messages"
Diffstat (limited to 'subcmds/sync.py')
-rw-r--r--subcmds/sync.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py
index 5c369a74..6c903ff4 100644
--- a/subcmds/sync.py
+++ b/subcmds/sync.py
@@ -406,7 +406,7 @@ later is required to fix a server side protocol bug.
406 groups = None) 406 groups = None)
407 407
408 if project.IsDirty(): 408 if project.IsDirty():
409 print('error: Cannot remove project "%s": uncommitted changes' 409 print('error: Cannot remove project "%s": uncommitted changes '
410 'are present' % project.relpath, file=sys.stderr) 410 'are present' % project.relpath, file=sys.stderr)
411 print(' commit changes, then run sync again', 411 print(' commit changes, then run sync again',
412 file=sys.stderr) 412 file=sys.stderr)
@@ -466,7 +466,7 @@ later is required to fix a server side protocol bug.
466 466
467 if opt.smart_sync or opt.smart_tag: 467 if opt.smart_sync or opt.smart_tag:
468 if not self.manifest.manifest_server: 468 if not self.manifest.manifest_server:
469 print('error: cannot smart sync: no manifest server defined in' 469 print('error: cannot smart sync: no manifest server defined in '
470 'manifest', file=sys.stderr) 470 'manifest', file=sys.stderr)
471 sys.exit(1) 471 sys.exit(1)
472 472