Skip to content

Fix some implicit relative path imports with absolute paths

Administrator requested to merge fix-relative-path-import-errors into master

Some implicit relative path were used by mistake in imports

Implicit relative paths would looking first in the current directory where the import was called, but in python 3 they are no longer supported and they just look for the import in the sys.path.

Edited by Administrator

Merge request reports