Fix 'initialize_logging' function spelling

This commit is contained in:
akhil_s 2023-10-01 02:33:12 +05:30 committed by Gobinath
parent c4675b743d
commit 776a8b81de
2 changed files with 2 additions and 2 deletions

View File

@ -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()

View File

@ -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.
"""