Skip to content

Commit

Permalink
fix(args): fix INITFILE spelling (#1518)
Browse files Browse the repository at this point in the history
fixes #1516
  • Loading branch information
damian0815 committed Nov 20, 2022
2 parents c79ec20 + 150c4a5 commit 2b7e3ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ldm/invoke/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ def parse_args(self):
print(f'>> Initialization file {initfile} found. Loading...')
sysargs.insert(0,f'@{initfile}')
else:
print(f'>> Initialization file {INITFILE} not found. Creating a new one...')
self._create_init_file(INITFILE)
print(f'>> Initialization file {initfile} not found. Creating a new one...')
self._create_init_file(initfile)
self._arg_switches = self._arg_parser.parse_args(sysargs)
return self._arg_switches
except Exception as e:
Expand Down

0 comments on commit 2b7e3ab

Please sign in to comment.