Skip to content

Commit

Permalink
Fix some error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Galactic647 committed Apr 15, 2023
1 parent 74fd6a8 commit 6efb899
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Hash Fixer/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,10 @@ def create_config(self) -> None:
with open('config.ini', 'w') as file:
self.config.write(file)
file.close()
logger.info('config.ini created, please set the path and relaunch the tool')
if self.mod_folder is not None:
logger.info('Resuming process')
else:
logger.info('config.ini created, please check the config and relaunch the tool')

def load_config(self) -> None:
if not os.path.exists('config.ini'):
Expand Down

0 comments on commit 6efb899

Please sign in to comment.