summaryrefslogtreecommitdiff
path: root/morphlib/remoteartifactcache.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/remoteartifactcache.py')
-rw-r--r--morphlib/remoteartifactcache.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/morphlib/remoteartifactcache.py b/morphlib/remoteartifactcache.py
index 17f547f2..c2f88773 100644
--- a/morphlib/remoteartifactcache.py
+++ b/morphlib/remoteartifactcache.py
@@ -16,6 +16,7 @@
import cliapp
import logging
+import urllib
import urllib2
import urlparse
@@ -108,7 +109,8 @@ class RemoteArtifactCache(object):
if not server_url.endswith('/'):
server_url += '/'
return urlparse.urljoin(
- server_url, '/1.0/artifacts?filename=%s' % filename)
+ server_url, '/1.0/artifacts?filename=%s' %
+ urllib.quote(filename))
def __str__(self): # pragma: no cover
return self.server_url