@ -12,7 +12,7 @@ pwd.db =
auth.secret = "change me in production"
session.secret = "change me in production"
budgets.dir = %(here)s/bugets
budgets.dir = %(here)s/budgets
pyramid.reload_templates = false
pyramid.includes =
@ -11,7 +11,7 @@ from pyramid.httpexceptions import HTTPFound
from ..overview import create_overview # noqa: F401
from ..exceptions import BudgetParserError, SuperXParserError # noqa: F401
XLSX_CONTENT_TYPE = "application/vnd.ms-excel"
XLSX_CONTENT_TYPE = "application/octet-stream"
class Root: