Do not use Python 3.6 constructs.

We must keep Python 3.5 compatibility as this is the latest
version on Debian 9.
This commit is contained in:
Pascal Obry 2020-03-05 10:03:37 +01:00
parent 8fa9e8c05f
commit deb6fe0827

View File

@ -51,7 +51,7 @@ def set_env(args):
for resource_file in [i for i in os.listdir(resource_dir) \ for resource_file in [i for i in os.listdir(resource_dir) \
if osp.isfile(os.path.join(resource_dir, i))]: if osp.isfile(os.path.join(resource_dir, i))]:
# look for resource file (XML) to extract valid plugin name # look for resource file (XML) to extract valid plugin name
if resource_file.lower() == f'{plugin_lname}.xml': if resource_file.lower() == '{plugin_lname}.xml'.format(plugin_lname=plugin_lname):
try: try:
# get plugin name from 'resources' attribute of 'meshers-group' xml node # get plugin name from 'resources' attribute of 'meshers-group' xml node
# as name extracted from environment variable can be in wrong case # as name extracted from environment variable can be in wrong case