summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)