Commit 81a4a5c0 authored by Jérome Perrin's avatar Jérome Perrin

gitclone: fix typo with uncommitted changes

parent 4985116e
...@@ -843,7 +843,7 @@ In case of uninstall, buildout will keep the repository directory:: ...@@ -843,7 +843,7 @@ In case of uninstall, buildout will keep the repository directory::
>>> print(system(buildout)) >>> print(system(buildout))
Uninstalling git-clone. Uninstalling git-clone.
Running uninstall recipe. Running uninstall recipe.
You have uncommited changes in /sample-buildout/parts/git-clone. This folder will be left as is. You have uncommitted changes in /sample-buildout/parts/git-clone. This folder will be left as is.
Installing git-clone. Installing git-clone.
destination directory already exists. destination directory already exists.
... ...
......
...@@ -311,7 +311,7 @@ def uninstall(name, options): ...@@ -311,7 +311,7 @@ def uninstall(name, options):
cwd=options['location'], cwd=options['location'],
stdout=subprocess.PIPE) stdout=subprocess.PIPE)
if p.communicate()[0].strip(): if p.communicate()[0].strip():
print("You have uncommited changes in %s." print("You have uncommitted changes in %s."
" This folder will be left as is." % options['location']) " This folder will be left as is." % options['location'])
force_keep = True force_keep = True
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment