You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However when running paster serve development.ini --reload I am getting this error message:
LookupError: No section 'dibbus' (prefixed by 'app' or 'application' or 'composite' or 'composit' or 'pipeline' or 'filter-app') found in config /path/to/Dibbus/development.ini
When changing the first line in development.ini
[app:Dibbus]
to
[app:dibbus]
the error message is 'gone', however looking from other documentation, this entry should contain the project name (Dibbus) and not the package name (dibbus).
The text was updated successfully, but these errors were encountered:
The production.ini generated by all paster templates now have an
effective logging level of WARN, which prevents e.g. SQLAlchemy statement
logging and other inappropriate output.
The production.ini of the pyramid_routesalchemy and pyramid_alchemy paster templates did not have a sqlalchemy logger
section, preventing paster serve production.ini from working.
The pyramid_routesalchemy and pyramid_alchemy paster templates used
the {{package}} variable in a place where it should have used the {{project}} variable, causing applications created with uppercase
letters e.g. paster create -t pyramid_routesalchemy Dibbus to fail to
start when paster serve development.ini was used against the result.
See https://github.com/Pylons/pyramid/issues/#issue/107
Created a project called 'Dibbus' using the pyramid_routesalchemy template(s). First paragraph of development.ini:
However when running paster serve development.ini --reload I am getting this error message:
When changing the first line in development.ini
to
the error message is 'gone', however looking from other documentation, this entry should contain the project name (Dibbus) and not the package name (dibbus).
The text was updated successfully, but these errors were encountered: