From 43ba2c52455d8938c66db09958223d02752b01d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= <valtri@civ.zcu.cz> Date: Wed, 9 Dec 2020 21:04:07 +0100 Subject: [PATCH] Python language compatibility --- orchestrate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchestrate.py b/orchestrate.py index e3cd13b..04ddef4 100755 --- a/orchestrate.py +++ b/orchestrate.py @@ -41,7 +41,7 @@ t = config.get('type', None) print('== plugin ==') if t and os.path.exists('%s/plugin.py' % t): print('-> %s/plugin.py' % t) - plugin = importlib.import_module(f'%s.plugin' % t) + plugin = importlib.import_module('%s.plugin' % t) Component = getattr(plugin, 'Component') component = Component(args, config, hosts) else: -- GitLab