# HG changeset patch # User Denis Laxalde # Date 1487924288 -3600 # Node ID 5e7282bdf140d1438b24a176373f74cda6680dff # Parent a2bc933ffb592ec2296c036ec8d84ec8c31f2675 [ctl] Load available configurations in "cubicweb-ctl list" Otherwise we rely on associated ctl plugins to be loaded which is arguably orthogonal to configurations. diff -r a2bc933ffb59 -r 5e7282bdf140 cubicweb/cwctl.py --- a/cubicweb/cwctl.py Thu Feb 23 08:54:01 2017 +0100 +++ b/cubicweb/cwctl.py Fri Feb 24 09:18:08 2017 +0100 @@ -205,6 +205,7 @@ print() if mode in ('all', 'config', 'configurations'): + cwcfg.load_available_configs() print('Available configurations:') for config in CONFIGURATIONS: print('*', config.name)