Skip to content

Commit

Permalink
Uppercase model filenames enabled (ultralytics#2890)
Browse files Browse the repository at this point in the history
  • Loading branch information
r-blmnr committed Apr 22, 2021
1 parent bcc7f87 commit af66b16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/google_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def gsutil_getsize(url=''):

def attempt_download(file, repo='ultralytics/yolov5'):
# Attempt file download if does not exist
file = Path(str(file).strip().replace("'", '').lower())
file = Path(str(file).strip().replace("'", ''))

if not file.exists():
try:
Expand Down

0 comments on commit af66b16

Please sign in to comment.