You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
The text was updated successfully, but these errors were encountered:
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:The text was updated successfully, but these errors were encountered: