Skip to content

Commit

Permalink
Fix missing positional argument when invoking ConfigGenerator from cli
Browse files Browse the repository at this point in the history
  • Loading branch information
manisandro committed Sep 17, 2024
1 parent 22ff6e0 commit 4ea964e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config_generator_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def timestamp(self):
logger = Logger()

# create ConfigGenerator
generator = ConfigGenerator(config, logger, os.path.dirname(args.config_file), False)
generator = ConfigGenerator(config, logger, os.path.dirname(args.config_file), False, False)
if args.command == 'all':
generator.write_configs()
generator.write_permissions()
Expand Down

0 comments on commit 4ea964e

Please sign in to comment.