Closed norbusan closed 5 years ago
currently the top-level module name is hard-coded to "main" which is a problem when installing into system directories. Simple renaming does not work, because there are several imports hard-coded to
import main.abc
Change this to use relative imports
import .abc
or depending on the depths of hierarchy to
import ..abc
currently the top-level module name is hard-coded to "main" which is a problem when installing into system directories. Simple renaming does not work, because there are several imports hard-coded to
Change this to use relative imports
or depending on the depths of hierarchy to