aprsd: main.py: Fix premature return in sample_config

Fix a typo in sample_config that causes the function to return before
config is generated.
This commit is contained in:
Martiros Shakhzadyan 2024-01-04 08:41:06 -05:00
parent 9350cf6534
commit 530ac30a09
1 changed files with 1 additions and 1 deletions

View File

@ -146,8 +146,8 @@ def sample_config(ctx):
raise SystemExit
raise
LOG.warning(conf.namespace)
return
generator.generate(conf)
return
@cli.command()