mirror of
https://github.com/craigerl/aprsd.git
synced 2025-07-31 12:52:24 -04:00
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:
parent
9350cf6534
commit
530ac30a09
@ -146,8 +146,8 @@ def sample_config(ctx):
|
|||||||
raise SystemExit
|
raise SystemExit
|
||||||
raise
|
raise
|
||||||
LOG.warning(conf.namespace)
|
LOG.warning(conf.namespace)
|
||||||
return
|
|
||||||
generator.generate(conf)
|
generator.generate(conf)
|
||||||
|
return
|
||||||
|
|
||||||
|
|
||||||
@cli.command()
|
@cli.command()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user