Skip to content
Snippets Groups Projects
Unverified Commit 997368b1 authored by Mihai's avatar Mihai Committed by GitHub
Browse files

Merge pull request #495 from codeunsolved/fix-invalid-lrg-error

Fix invalid LRG record issue
parents 6562bf89 802a6379
No related branches found
No related tags found
No related merge requests found
...@@ -781,7 +781,7 @@ class LRGRetriever(Retriever): ...@@ -781,7 +781,7 @@ class LRGRetriever(Retriever):
:returns: the full path to the file; None in case of an error. :returns: the full path to the file; None in case of an error.
:rtype: unicode :rtype: unicode
""" """
url = '{}/{}.xml'.format(settings.LRG_PREFIX_URL, name) url = '{}/{}.xml'.format(settings.LRG_PREFIX_URL.rstrip('/'), name)
filename = None filename = None
try: try:
...@@ -811,7 +811,7 @@ class LRGRetriever(Retriever): ...@@ -811,7 +811,7 @@ class LRGRetriever(Retriever):
handle = urllib2.urlopen(url) handle = urllib2.urlopen(url)
info = handle.info() info = handle.info()
if (info['Content-Type'] == 'application/xml' and if (info['Content-Type'] in ['application/xml', 'text/xml'] and
'Content-length' in info): 'Content-length' in info):
# Looks like a valid LRG file. # Looks like a valid LRG file.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment