Fix typo in linux.py (#116)

This commit is contained in:
JP Smith
2017-04-10 12:40:45 -05:00
committed by GitHub
parent 99a3327b8d
commit a41eb6feba
+1 -1
View File
@@ -1153,7 +1153,7 @@ class Linux(object):
pass
mode = { os.O_RDWR: 'r+', os.O_RDONLY: 'r', os.O_WRONLY: 'w' }[flags&7]
f = File(filename, mode) #todo modes, flags
logger.debug("Openning file %s for %s real fd %d",filename, mode, f.fileno())
logger.debug("Opening file %s for %s real fd %d",filename, mode, f.fileno())
except Exception,e:
logger.info("Could not open file %s. Reason %s"%(filename,str(e)))
return -1