summaryrefslogtreecommitdiff
path: root/morphlib/localrepocache.py
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-04-10 17:50:26 +0100
committerRichard Maw <richard.maw@codethink.co.uk>2012-04-11 13:10:27 +0100
commit64949c45eb7867dcbdf1b9e2b7cb65e8e5716eac (patch)
tree1904f13f5d638b70cd47a61ed876d57bc8560f93 /morphlib/localrepocache.py
parent48671d75ae47cd133ecf58cc476cd18ea9afd469 (diff)
downloadmorph-64949c45eb7867dcbdf1b9e2b7cb65e8e5716eac.tar.gz
localrepocache: fix bundle paths
They must end with .bndl as that is the format lorry generates
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 f2fdc3e9..0b1f0734 100644
--- a/morphlib/localrepocache.py
+++ b/morphlib/localrepocache.py
@@ -172,7 +172,7 @@ class LocalRepoCache(object):
def _clone_with_bundle(self, repourl, path):
escaped = self._escape(repourl)
- bundle_url = urlparse.urljoin(self._bundle_base_url, escaped)
+ bundle_url = urlparse.urljoin(self._bundle_base_url, escaped) + '.bndl'
bundle_path = path + '.bundle'
try:
self._fetch(bundle_url, bundle_path)