From 840bfc9e2a51305c68fa09e9cab82a14a9bb16bf Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Fri, 25 Sep 2020 20:10:42 +0200 Subject: development: fix __main__ of Python skeleton --- docs/contributing/development.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'docs/contributing/development.rst') 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) -- cgit v1.2.3