From 2841fd315eae0ce80ec35cafa0ce37d358854ddb Mon Sep 17 00:00:00 2001 From: Gabriel Studer <gabriel.studer@unibas.ch> Date: Fri, 15 Nov 2019 09:57:07 +0100 Subject: [PATCH] fix another implicit relative import --- modules/base/pymod/table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/base/pymod/table.py b/modules/base/pymod/table.py index c442061fb..6a8a9abe3 100644 --- a/modules/base/pymod/table.py +++ b/modules/base/pymod/table.py @@ -861,7 +861,7 @@ Statistics for column %(col)s """ try: - from table_selector import TableSelector + from .table_selector import TableSelector except: raise ImportError("Tried to import from the file table_selector.py, but could not find it!") -- GitLab