summaryrefslogtreecommitdiff
path: root/silx/utils/launcher.py
diff options
context:
space:
mode:
Diffstat (limited to 'silx/utils/launcher.py')
-rw-r--r--silx/utils/launcher.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/silx/utils/launcher.py b/silx/utils/launcher.py
index 059e990..c46256a 100644
--- a/silx/utils/launcher.py
+++ b/silx/utils/launcher.py
@@ -83,12 +83,12 @@ class LauncherCommand(object):
else:
module = self.get_module()
if module is None:
- _logger.error("Imposible to load module name '%s'" % self.module_name)
+ _logger.error("Impossible to load module name '%s'" % self.module_name)
return None
# reach the 'main' function
if not hasattr(module, "main"):
- raise TypeError("Module excpect to have a 'main' function")
+ raise TypeError("Module expect to have a 'main' function")
else:
main = getattr(module, "main")
return main