You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function isResolvable() does not resolve FTP URLs, as the urllib2.urlopen() library function that is called does open the url but returns a status of "None".
The long term solution is to refactor metadig engine so that it can use python 3 (NCEAS/metadig-engine#211).
The short term solution is to parse the url, detect that it is an FTP URL and use the urllib2 FTPHandler or another library that handles FTP URLs properly.
The text was updated successfully, but these errors were encountered:
The function
isResolvable()
does not resolve FTP URLs, as theurllib2.urlopen()
library function that is called does open the url but returns a status of "None".The long term solution is to refactor metadig engine so that it can use python 3 (NCEAS/metadig-engine#211).
The short term solution is to parse the url, detect that it is an FTP URL and use the
urllib2 FTPHandler
or another library that handles FTP URLs properly.The text was updated successfully, but these errors were encountered: