changeset 766:f69fdc601845

publish: Fix crash.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 02 Jul 2016 01:27:00 -0700
parents 549e21789ad9
children 3b33d9fb007c
files piecrust/publishing/base.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/piecrust/publishing/base.py	Sat Jul 02 01:24:39 2016 -0700
+++ b/piecrust/publishing/base.py	Sat Jul 02 01:27:00 2016 -0700
@@ -66,8 +66,8 @@
 
 
 class ShellCommandPublisherBase(Publisher):
-    def __init__(self, app, target):
-        super(ShellCommandPublisherBase, self).__init__(app, target)
+    def __init__(self, app, target, config):
+        super(ShellCommandPublisherBase, self).__init__(app, target, config)
         self.expand_user_args = True
 
     def run(self, ctx):