From d032d13083b36c9696342a31a7ac5809e3456b1e Mon Sep 17 00:00:00 2001 From: Vasiliy Gokoyev Date: Wed, 10 Jan 2024 09:55:50 -0500 Subject: [PATCH] fix a CI linter issue --- plugins/action/synchronize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/action/synchronize.py b/plugins/action/synchronize.py index f844b53..9d48e65 100644 --- a/plugins/action/synchronize.py +++ b/plugins/action/synchronize.py @@ -78,7 +78,7 @@ class ActionModule(ActionBase): if self._host_is_ipv6_address(host): return '[%s%s]:%s' % (user_prefix, host, path) - #preserve formatting of remote paths if host or user@host is explicitly defined in the path + # preserve formatting of remote paths if host or user@host is explicitly defined in the path if ':' not in path: return '%s%s:%s' % (user_prefix, host, path) elif '@' not in path: