From 04271efebc997e8c26fb7ac9b103ad9ce49507be Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Mon, 13 Dec 2021 17:37:30 -0300 Subject: [PATCH] [web] fix: spelling --- bauh/gems/web/controller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bauh/gems/web/controller.py b/bauh/gems/web/controller.py index d0496634..21f1af6f 100644 --- a/bauh/gems/web/controller.py +++ b/bauh/gems/web/controller.py @@ -681,7 +681,7 @@ class WebApplicationManager(SoftwareManager): install_options.append(f'--inject={fix_path}') Path(FIX_FILE_PATH).mkdir(exist_ok=True, parents=True) - self.logger.info(f'Writting JS fix at {fix_path}') + self.logger.info(f'Writing JS fix at {fix_path}') with open(fix_path, 'w+') as f: f.write(fix) @@ -694,7 +694,7 @@ class WebApplicationManager(SoftwareManager): icon_path, icon_bytes = download[0], download[1] pkg.custom_icon = icon_path - # writting the icon in a temporary folder to be used by the nativefier process + # writing the icon in a temporary folder to be used by the nativefier process temp_icon_path = '{}/{}'.format(TEMP_PATH, pkg.icon_url.split('/')[-1]) install_options.append('--icon={}'.format(temp_icon_path))