From 9b2dd802d7b071e00e7f49667b880984f8b38721 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20G=C3=B3mez=20Garc=C3=ADa?= Date: Mon, 27 Jan 2020 14:01:53 +0100 Subject: [PATCH] fixed uds actor parameters --- actor/src/udsactor/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actor/src/udsactor/service.py b/actor/src/udsactor/service.py index 79c2ed289..79d0267f0 100644 --- a/actor/src/udsactor/service.py +++ b/actor/src/udsactor/service.py @@ -398,7 +398,7 @@ class CommonService: # pylint: disable=too-many-instance-attributes Base preconnect executes the preconnect command ''' if self._cfg.pre_command: - self.execute(self._cfg.pre_command + ' "{}" "{}" "{}" "{}"'.format(userName.replace('"', '%22'), protocol, ip, hostname), 'preConnect') + self.execute(self._cfg.pre_command + ' {} {} {} {}'.format(userName.replace('"', '%22'), protocol, ip, hostname), 'preConnect') return 'ok'