We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bug in hdmCECController.py
import sys MY_PATH = path.realpath(__file__) MY_DIR = path.dirname(MY_PATH) sys.path.append(path.join(MY_DIR,'/../../')) from framework.core.logModule import logModule from hdmicecModules import CECClientController, MonitoringType
needs to be
from framework.core.hdmicecModules import CECClientController, MonitoringType
it assumes that you've added hdmicecModules into the current path which you have not in this file.
or
sys.path.append(path.join(MY_DIR,'/../')) - would be required
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
bug in hdmCECController.py
needs to be
it assumes that you've added hdmicecModules into the current path which you have not in this file.
or
The text was updated successfully, but these errors were encountered: