From 970aa5b029fbc4a7f3bd2c5fa0c3ea94a1d26136 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 15 Aug 2019 17:21:54 +0200 Subject: [PATCH] ctl: fix call to configure method in restore command (#35412) --- wcs/ctl/restore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcs/ctl/restore.py b/wcs/ctl/restore.py index ed36e5a4a..60269195e 100644 --- a/wcs/ctl/restore.py +++ b/wcs/ctl/restore.py @@ -34,7 +34,7 @@ class CmdRestore(Command): import publisher self.config.remove_option('main', 'error_log') - publisher.WcsPublisher.configure(self.config, sub_options.extra) + publisher.WcsPublisher.configure(self.config) pub = publisher.WcsPublisher.create_publisher( register_tld_names=False)