diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-09-25 20:10:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-25 20:10:42 +0200 |
commit | 840bfc9e2a51305c68fa09e9cab82a14a9bb16bf (patch) | |
tree | fe75b0890c08acba7822d3aaeaecdda3b8efe2ff /docs/contributing | |
parent | cbb29ca10c1ec5853d7b665bb36dddf4301e27ff (diff) | |
download | vyos-documentation-840bfc9e2a51305c68fa09e9cab82a14a9bb16bf.tar.gz vyos-documentation-840bfc9e2a51305c68fa09e9cab82a14a9bb16bf.zip |
development: fix __main__ of Python skeleton
Diffstat (limited to 'docs/contributing')
-rw-r--r-- | docs/contributing/development.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/contributing/development.rst b/docs/contributing/development.rst index b382b131..86371845 100644 --- a/docs/contributing/development.rst +++ b/docs/contributing/development.rst @@ -317,8 +317,10 @@ device if you happen to be a crazy scientist. pass try: - config = get_config() - verify(config) + c = get_config() + verify(c) + generate(c) + apply(c) except ConfigError as e: print(e) sys.exit(1) |