Browse Source

Windows `check_file()` fix (#7938)

Resolves Ultralytics HUB CI errors.
modifyDataloader
Glenn Jocher GitHub 2 years ago
parent
commit
541a5b72bb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      utils/general.py

+ 1
- 1
utils/general.py View File

@@ -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

Loading…
Cancel
Save