diff options
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) | 
