From 2ddc7b40a84353dd1378e225d4a6f457699e9f22 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Mon, 17 Sep 2018 11:35:07 +0300 Subject: Fix: method name (for real?) I long after static typing. No, mypy isn't enough. --- ick2/actions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ick2') diff --git a/ick2/actions.py b/ick2/actions.py index a91d776..08b22c6 100644 --- a/ick2/actions.py +++ b/ick2/actions.py @@ -598,9 +598,9 @@ class DputAction(Action): # pragma: no cover workspace = env.get_workspace_directory() apt_server = self._cc.get_apt_server() - config = self.get_dput_config_file(apt_server) + config = self.get_dput_config(apt_server) loggign.debug('dput config:\n%s', config) - filename = self.create_dput_cf(config) + filename = self.create_dput_config_file(config) argv = ['sh', '-c', 'dput -c {} ick *.changes'.format(filename)] exit_code = env.host_runcmd(argv, cwd=workspace) -- cgit v1.2.1