This is the error I am getting:
Traceback (most recent call last): File \"E:\\stuff\\module.py\", line 91, in f = open(\'E:/stuff/log.tx
Define you path names using os.path.join()
os.path.join()
root="E:\\" mylog = os.path.join(root,"stuff","log.txt") # or log.txt.txt as seen in your dir output f = open(mylog) ... f.close()