Skip to content

Commit

Permalink
Merge pull request #1122 from fkie-cad/manage_users-default-config-na…
Browse files Browse the repository at this point in the history
…me-fix

manage_users: default config name fix
  • Loading branch information
rhelmke authored Aug 30, 2023
2 parents 9053b85 + d0cbdf1 commit 8d67e97
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/manage_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@
def setup_argparse():
parser = argparse.ArgumentParser()
parser.add_argument('-v', '--version', action='version', version=f'FACT User Management (FACTUM) {__VERSION__}')
parser.add_argument('-C', '--config_file', help='set path to config File', default=f'{get_config_dir()}/main.cfg')
parser.add_argument(
'-C', '--config_file', help='set path to config File', default=f'{get_config_dir()}/fact-core-config.toml'
)
return parser.parse_args()


Expand Down

0 comments on commit 8d67e97

Please sign in to comment.