summaryrefslogtreecommitdiff
path: root/morphlib/localrepocache.py
diff options
context:
space:
mode:
authorJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-04-19 12:21:17 +0100
committerJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-04-19 12:21:17 +0100
commitbaee268b9f0d6a3dfc04661023bc78dfda3f2f0e (patch)
tree835c0fc10125bdeadb9095e4a44bebbc06136d3d /morphlib/localrepocache.py
parentbca1f1ec2b1723e950354132ef591eb7b4f7620a (diff)
downloadmorph-baee268b9f0d6a3dfc04661023bc78dfda3f2f0e.tar.gz
Fix LocalRepoCache tests.
Diffstat (limited to 'morphlib/localrepocache.py')
-rw-r--r--morphlib/localrepocache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/localrepocache.py b/morphlib/localrepocache.py
index 32f5a664..5e04b187 100644
--- a/morphlib/localrepocache.py
+++ b/morphlib/localrepocache.py
@@ -226,7 +226,7 @@ class LocalRepoCache(object):
for repourl, path in self._base_iterate(reponame):
try:
- self._git(['clone', '-n', '-l', repourl, path])
+ self._git(['clone', '-n', repourl, path])
except morphlib.execute.CommandFailure, e:
errors.append('Unable to clone from %s to %s: %s' %
(repourl, path, e))