I have the following python files:
help_functions.py
check.py
I'm trying to import help_functions file from check file (both files in the same directory) with the following command:
from help_functions import Utils
after running it from cmd with WLST which has Python 2.2 interpreter I get the following error:ImportError:no module named help_functions
any idea what should I do to make it recognize the help_functions file?