Commit b59cd430 authored by Antoine Millet's avatar Antoine Millet
Browse files

Fixed argument position on script_run call to hosts

parent 7b2a0f2e
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -83,8 +83,7 @@ class HostClient(Client):
    def script_run(self, sha1_hash, script, owner, batch=None, *args):
        """ Run a script on the host.
        """
        return self.conn.call('script_run', sha1_hash, script, owner,
                              batch=batch, *args)
        return self.conn.call('script_run', sha1_hash, script, owner, batch, *args)

    def plugin_help(self, plugin, method):
        """ Get help about a plugin installed on matching host.