diff --git a/utils/general.py b/utils/general.py index bb1aa667d8a0..ed5cc38da307 100755 --- a/utils/general.py +++ b/utils/general.py @@ -419,7 +419,7 @@ def check_file(file, suffix=''): if Path(file).is_file() or not file: # exists return file elif file.startswith(('http:/', 'https:/')): # download - url = str(Path(file)).replace(':/', '://') # Pathlib turns :// -> :/ + url = file # warning: Pathlib turns :// -> :/ file = Path(urllib.parse.unquote(file).split('?')[0]).name # '%2F' to '/', split https://url.com/file.txt?auth if Path(file).is_file(): LOGGER.info(f'Found {url} locally at {file}') # file already exists