# HG changeset patch # User Ludovic Chabant # Date 1467448020 25200 # Node ID f69fdc601845f977a91f26b7ccb1a41094860ce2 # Parent 549e21789ad933d066aa3e98335e9718937ef1ef publish: Fix crash. diff -r 549e21789ad9 -r f69fdc601845 piecrust/publishing/base.py --- 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):