# HG changeset patch # User Denis Laxalde # Date 1490004971 -3600 # Node ID 339b26bf17d26e84d8755c261ec0483984b63153 # Parent 9233dbde28d52d4d22fbb3fb6b3e3491a706dd47 [pyramid] Rename paste app factory to pyramid_main Making it clearer that this would build a Pyramid application, just in case we eventually provide other means to create a WSGI application than Pyramid. diff -r 9233dbde28d5 -r 339b26bf17d2 cubicweb/pyramid/development.ini.tmpl --- a/cubicweb/pyramid/development.ini.tmpl Mon Mar 20 09:08:44 2017 +0100 +++ b/cubicweb/pyramid/development.ini.tmpl Mon Mar 20 11:16:11 2017 +0100 @@ -4,7 +4,7 @@ ### [app:main] -use = egg:cubicweb#main +use = egg:cubicweb#pyramid_main pyramid.reload_templates = true pyramid.debug_authorization = false diff -r 9233dbde28d5 -r 339b26bf17d2 setup.py --- a/setup.py Mon Mar 20 09:08:44 2017 +0100 +++ b/setup.py Mon Mar 20 11:16:11 2017 +0100 @@ -206,7 +206,7 @@ ], entry_points={ 'paste.app_factory': [ - 'main=cubicweb.pyramid:pyramid_app', + 'pyramid_main=cubicweb.pyramid:pyramid_app', ], }, extras_require={