wcs: make sure there's a / after the domain name (#7320)

This commit is contained in:
Frédéric Péters 2015-06-01 09:07:52 +02:00
parent 2b8550af7b
commit df9793d68f
1 changed files with 2 additions and 0 deletions

View File

@ -147,6 +147,8 @@ class WcsBlurpMixin(object):
sources = []
for slug, wcs_site in wcs_sites.items():
url = wcs_site.get('url')
if not url.endswith('/'):
url += '/'
source = {
'slug': slug,
'parser_type': 'json',