Refactor module_root -> module_path

This commit is contained in:
Labrys of Knossos 2018-12-19 19:05:40 -05:00
parent aea6e12639
commit 9d0097fa68
3 changed files with 4 additions and 4 deletions

View file

@ -4,12 +4,12 @@ import sys
import os
__all__ = [
'module_root',
'module_path',
'add_path',
]
def module_root(module=__file__):
def module_path(module=__file__):
try:
path = module.__file__
except AttributeError: