File paths need to be checked for working on windows.
For example, in opencontrolfiles, the logging path may assume Unix systems. See around line 110:
# create logger with 'opencontrolfiles'logger=logging.getLogger('opencontrolfiles')
logger.setLevel(logging.DEBUG)
# create file handler which logs even debug messages# TODO - make this work for windows machinesfh=logging.FileHandler("{}/{}".format(os.path.dirname(os.path.realpath(__file__)), "../output/logs/opencontrolfiles.log"))
fh.setLevel(logging.DEBUG)
File paths need to be checked for working on windows.
For example, in
opencontrolfiles, the logging path may assume Unix systems. See around line 110: