diff --git a/safeeyes/__main__.py b/safeeyes/__main__.py index 524ad96..2eab4cd 100755 --- a/safeeyes/__main__.py +++ b/safeeyes/__main__.py @@ -111,7 +111,7 @@ def main(): args = parser.parse_args() # Initialize the logging - utility.intialize_logging(args.debug) + utility.initialize_logging(args.debug) utility.initialize_platform() config = Config() diff --git a/safeeyes/utility.py b/safeeyes/utility.py index 5b6cadd..e145d4d 100644 --- a/safeeyes/utility.py +++ b/safeeyes/utility.py @@ -515,7 +515,7 @@ def replace_style_sheet(): os.chmod(STYLE_SHEET_PATH, 0o777) -def intialize_logging(debug): +def initialize_logging(debug): """ Initialize the logging framework using the Safe Eyes specific configurations. """