From 324af0cfc63ea0e7f1eb2207e5c466cfa27469c4 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Sun, 9 Aug 2020 15:33:06 -0700 Subject: [PATCH] Update general.py --- utils/general.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.')