From 08c3a90b400d0aff307dd43ff4cd6f01ca71a6cb Mon Sep 17 00:00:00 2001 From: Jared Haight Date: Mon, 25 Jul 2016 15:38:23 -0400 Subject: [PATCH] change IsOSX to utils.IsOsX. Fixes #89 --- settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.py b/settings.py index b894dab..6479dc8 100644 --- a/settings.py +++ b/settings.py @@ -65,7 +65,7 @@ class Settings: def populate(self, options): - if options.Interface is None and IsOsX() is False: + if options.Interface is None and utils.IsOsX() is False: print utils.color("Error: -I mandatory option is missing", 1) sys.exit(-1)