get_data_mod: fix error message when module not found (pythondata modules are named only with "-" and not "_").

This commit is contained in:
Florent Kermarrec 2020-11-05 15:58:32 +01:00
parent 65f19b5c4a
commit 3e47a6e48b
1 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,8 @@ def get_data_mod(data_type, data_name):
dm = l['dm']
return dm
except ImportError as e:
data_type = data_type.replace("_", "-")
data_name = data_name.replace("_", "-")
raise ImportError("""\
pythondata-{dt}-{dn} module not installed! Unable to use {dn} {dt}.
{e}