From 92fbfa9ebd8c419cf18849da6b71dda52e33782b Mon Sep 17 00:00:00 2001 From: Kian-Tat Lim Date: Wed, 15 Sep 2021 15:12:52 +0000 Subject: [PATCH] Trivial change for fork testing. --- python/lsst/utils/doImport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/utils/doImport.py b/python/lsst/utils/doImport.py index cbb149c4..b92886e9 100644 --- a/python/lsst/utils/doImport.py +++ b/python/lsst/utils/doImport.py @@ -50,7 +50,7 @@ def doImport(importable): item could not be retrieved from the imported module. """ if not isinstance(importable, str): - raise TypeError(f"Unhandled type of importable, val: {importable}") + raise TypeError(f"Unhandled type of importable, value: {importable}") def tryImport(module, fromlist, previousError): pytype = importlib.import_module(module)