diff --git a/utils/general.py b/utils/general.py index 3dba0b2f6707..3ddc31f5832f 100755 --- a/utils/general.py +++ b/utils/general.py @@ -142,7 +142,7 @@ def check_dataset(dict): r = os.system('unzip -q %s -d ../ && rm %s' % (f, f)) else: # bash script r = os.system(s) - print('Datast autodownload %s' % ('success' if r == 0 else 'failure')) # analyze return value + print('Dataset autodownload %s' % ('success' if r == 0 else 'failure')) # analyze return value else: Exception('Dataset autodownload unavailable.')