Skip to content

Commit

Permalink
Uppercase model filenames enabled (ultralytics#2890)
Browse files Browse the repository at this point in the history
(cherry picked from commit 0395e39)
  • Loading branch information
r-blmnr authored and Lechtr committed Apr 25, 2021
1 parent 8d56890 commit 3e65429
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 3e65429

Please sign in to comment.