From 6a7f741c3fd25229974f4d7267e71c56f7482255 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Mon, 19 Aug 2019 17:46:49 +0200 Subject: [PATCH] Add missing argument --- wo/cli/plugins/stack_pref.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wo/cli/plugins/stack_pref.py b/wo/cli/plugins/stack_pref.py index ab6ea2d..d640fac 100644 --- a/wo/cli/plugins/stack_pref.py +++ b/wo/cli/plugins/stack_pref.py @@ -167,12 +167,12 @@ def post_pref(self, apt_packages, packages): if not os.path.isfile('{0}/gzip.conf.disabled'.format(ngxcnf)): data = dict() WOTemplate.tmpl_render(self, '{0}/gzip.conf', - 'gzip.mustache') + 'gzip.mustache', data) if not os.path.isfile('{0}/brotli.conf'): WOTemplate.tmpl_render(self, '{0}/brotli.conf.disabled', - 'brotli.mustache') + 'brotli.mustache', data) WOTemplate.tmpl_render(self, '{0}/tweaks.conf', 'tweaks.mustache')