diff 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
line wrap: on
line diff
--- a/piecrust/data/builder.py	Sun Nov 26 22:21:10 2017 -0800
+++ b/piecrust/data/builder.py	Sun Nov 26 22:21:33 2017 -0800
@@ -68,8 +68,7 @@
     # Put the site data first so that `MergedMapping` doesn't load stuff
     # for nothing just to find a value that was in the YAML config all
     # along.
-    data = MergedMapping([site_data, data, providers_data],
-                         stats=app.env.stats)
+    data = MergedMapping([site_data, data, providers_data])
 
     # Do this at the end because we want all the data to be ready to be
     # displayed in the debugger window.