# HG changeset patch # User Denis Laxalde # Date 1488182783 -3600 # Node ID fa1837a8570885bd2b66fab85ae0b0172f9dcb48 # Parent d6e2b6d564329b21c9f4bd57ad487728ab24422e [cwctl] Recommend 'pyramid' before 'wsgi' when twisted is not available Not sure anyone ever really used the latter and the former is certainly more reliable/tested. diff -r d6e2b6d56432 -r fa1837a85708 cubicweb/cwctl.py --- a/cubicweb/cwctl.py Mon Feb 27 09:05:33 2017 +0100 +++ b/cubicweb/cwctl.py Mon Feb 27 09:06:23 2017 +0100 @@ -513,8 +513,8 @@ msg = ( "Twisted is required by the 'start' command\n" "Either install it, or use one of the alternative commands:\n" - "- '{ctl} wsgi {appid}'\n" - "- '{ctl} pyramid {appid}'\n") + "- '{ctl} pyramid {appid}'\n" + "- '{ctl} wsgi {appid}'\n") raise ExecutionError(msg.format(ctl='cubicweb-ctl', appid=appid)) config = cwcfg.config_for(appid, debugmode=self['debug']) # override config file values with cmdline options