From 1e96ee88d41b9fdc7c15157d15041cbfe34fbc44 Mon Sep 17 00:00:00 2001 From: Blaise Li <blaise.li__git@nsup.org> Date: Wed, 30 Oct 2019 16:18:49 +0100 Subject: [PATCH] Fix wrappers_dir path. --- smwrappers/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smwrappers/__init__.py b/smwrappers/__init__.py index 276c016..73ea266 100644 --- a/smwrappers/__init__.py +++ b/smwrappers/__init__.py @@ -4,4 +4,4 @@ __all__ = ["wrappers_dir"] # The working directory is that of the importing context. # __path__ gives access to the package path -wrappers_dir = __path__ +wrappers_dir = __path__[0] -- GitLab