comparison piecrust/data/builder.py @ 1010:501bd4ab7e06

internal: Remove unused parameter.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 26 Nov 2017 22:21:33 -0800
parents 8adc27285d93
children
comparison
equal deleted inserted replaced
1009:cd0345e4001e 1010:501bd4ab7e06
66 providers_data = DataProvidersData(page) 66 providers_data = DataProvidersData(page)
67 67
68 # Put the site data first so that `MergedMapping` doesn't load stuff 68 # Put the site data first so that `MergedMapping` doesn't load stuff
69 # for nothing just to find a value that was in the YAML config all 69 # for nothing just to find a value that was in the YAML config all
70 # along. 70 # along.
71 data = MergedMapping([site_data, data, providers_data], 71 data = MergedMapping([site_data, data, providers_data])
72 stats=app.env.stats)
73 72
74 # Do this at the end because we want all the data to be ready to be 73 # Do this at the end because we want all the data to be ready to be
75 # displayed in the debugger window. 74 # displayed in the debugger window.
76 if (app.config.get('site/show_debug_info') and 75 if (app.config.get('site/show_debug_info') and
77 not app.config.get('baker/is_baking')): 76 not app.config.get('baker/is_baking')):