From 30e64970697c33f5fea411e60f01752f98441397 Mon Sep 17 00:00:00 2001 From: Ayan Banerjee Date: Tue, 15 Jan 2019 00:42:46 +0530 Subject: [PATCH] utils.py: Fix typo abscent --> absent --- lml/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lml/utils.py b/lml/utils.py index 45c474d..5f28110 100644 --- a/lml/utils.py +++ b/lml/utils.py @@ -42,7 +42,7 @@ def do_import(plugin_module_name): return _do_import(plugin_module_name) except ImportError: log.exception( - "%s is abscent or cannot be imported", plugin_module_name + "%s is absent or cannot be imported", plugin_module_name ) raise