Apply URLFetchStrategy to ftp:// and ftps:// url schemes (#13939)
* Apply URLFetchStrategy to ftp:// and ftps:// url schemes * Corrected trailing whitespace error
This commit is contained in:
parent
1d06949306
commit
b33b8a3e29
1 changed files with 3 additions and 1 deletions
|
@ -1311,7 +1311,9 @@ def from_url_scheme(url, *args, **kwargs):
|
|||
{
|
||||
'file': 'url',
|
||||
'http': 'url',
|
||||
'https': 'url'
|
||||
'https': 'url',
|
||||
'ftp': 'url',
|
||||
'ftps': 'url',
|
||||
})
|
||||
|
||||
scheme = parsed_url.scheme
|
||||
|
|
Loading…
Reference in a new issue