# HG changeset patch # User Denis Laxalde # Date 1487924288 -3600 # Node ID 7c296802980b44a17e764e135f75aed87f94aae0 # Parent f96f77a190f2121793081363268250d8a113f442 [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 f96f77a190f2 -r 7c296802980b cubicweb/cwctl.py --- a/cubicweb/cwctl.py Tue Jan 31 11:06:28 2017 +0100 +++ b/cubicweb/cwctl.py Fri Feb 24 09:18:08 2017 +0100 @@ -211,6 +211,7 @@ print() if mode in ('all', 'config', 'configurations'): + cwcfg.load_available_configs() print('Available configurations:') for config in CONFIGURATIONS: print('*', config.name)