We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9750d7 commit 70148ffCopy full SHA for 70148ff
lib/pyld/jsonld.py
@@ -389,7 +389,6 @@ def load_document(url):
389
('Accept', 'application/ld+json, application/json'),
390
('Accept-Encoding', 'deflate')]
391
392
- print('URLGO', url)
393
with closing(url_opener.open(url)) as handle:
394
content_encoding = handle.info().get('Content-Encoding', '')
395
if content_encoding == 'gzip':
@@ -427,7 +426,6 @@ def load_document(url):
427
426
except JsonLdError as e:
428
raise e
429
except Exception as cause:
430
- print('URLERR', url)
431
raise JsonLdError(
432
'Could not retrieve a JSON-LD document from the URL.',
433
'jsonld.LoadDocumentError', code='loading document failed',
0 commit comments