# HG changeset patch # User Mads Kiilerich # Date 2020-08-01 23:18:43 # Node ID b42eae7b7abb7ecebbbaf0158f463ba6d2609b01 # Parent 3e9d079fcf914ef42c5e109bf389e02abea100ba tg: fix launching with kajiki after moving to FullStackApplicationConfigurator 27d9ca0c8381 Application start failed with: TypeError: 'FullStackApplicationConfigurator' object is not subscriptable diff --git a/kallithea/config/app_cfg.py b/kallithea/config/app_cfg.py --- a/kallithea/config/app_cfg.py +++ b/kallithea/config/app_cfg.py @@ -92,7 +92,7 @@ try: except ImportError: pass else: - base_config['renderers'].append('kajiki') + base_config.get_blueprint_value('renderers').append('kajiki') enable_debugbar(base_config)