From 64949c45eb7867dcbdf1b9e2b7cb65e8e5716eac Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Tue, 10 Apr 2012 17:50:26 +0100 Subject: localrepocache: fix bundle paths They must end with .bndl as that is the format lorry generates --- morphlib/localrepocache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'morphlib/localrepocache.py') 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) -- cgit v1.2.1