summaryrefslogtreecommitdiff
path: root/morphcacheserver
diff options
context:
space:
mode:
authorJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-04-18 17:36:00 +0100
committerJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-04-18 17:36:00 +0100
commita58f373cec3b3bd4420478c99dde6e7fa2cba31b (patch)
tree83be97c15b6959d0eba7d1222b5114553040ef86 /morphcacheserver
parent6b762c363224860833ea20c9ba8109c0c210d419 (diff)
downloadmorph-a58f373cec3b3bd4420478c99dde6e7fa2cba31b.tar.gz
Fix various small issues preventing bundles from working.
Diffstat (limited to 'morphcacheserver')
-rw-r--r--morphcacheserver/repocache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphcacheserver/repocache.py b/morphcacheserver/repocache.py
index e6ab6401..3bb348ff 100644
--- a/morphcacheserver/repocache.py
+++ b/morphcacheserver/repocache.py
@@ -83,7 +83,7 @@ class RepoCache(object):
def get_bundle_filename(self, repo_url):
quoted_url = self._quote_url(repo_url)
- return os.path.join(self.bundle_dir, '%s.bndl' % quoted_url)
+ return os.path.join(self.bundle_cache_dir, '%s.bndl' % quoted_url)
def _quote_url(self, url):
valid_chars = string.digits + string.letters + '%_'