summaryrefslogtreecommitdiff
path: root/morphlib/sourcemanager.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/sourcemanager.py')
-rw-r--r--morphlib/sourcemanager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/morphlib/sourcemanager.py b/morphlib/sourcemanager.py
index c25f7331..a5ae9124 100644
--- a/morphlib/sourcemanager.py
+++ b/morphlib/sourcemanager.py
@@ -69,11 +69,11 @@ class SourceManager(object):
location = self.cache_dir + '/' + name
if os.path.exists(location):
- self.msg('Have a cached clone, update origin')
+ self.msg('Cached clone exists, updating origin')
morphlib.git.update_remote(location, "origin", self.msg)
return True, location
else:
- self.msg('Need to clone from %s' % repo)
+ self.msg('No cached clone found, fetching from %s' % repo)
success = False