From b57b4049fd1a9e2c3b44db3c9aa3c1a0e9a8670e Mon Sep 17 00:00:00 2001 From: Yoongi Kim <38288705+YoongiKim@users.noreply.github.com> Date: Thu, 24 Jan 2019 10:04:24 +0900 Subject: [PATCH] Mac OS message change --- collect_links.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collect_links.py b/collect_links.py index 935585b..0ac804f 100644 --- a/collect_links.py +++ b/collect_links.py @@ -33,7 +33,7 @@ def __init__(self): print('Detected OS : Linux') executable = './chromedriver/chromedriver_linux' elif platform.system() == 'Darwin': - print('Detected OS : Darwin') + print('Detected OS : Mac') executable = './chromedriver/chromedriver_mac' else: assert False, 'Unknown OS Type'