Fix missing attribute in Fifo.
This commit is contained in:
parent
35ff892db1
commit
5707698b66
|
@ -53,6 +53,7 @@ class Fifo:
|
||||||
if err.errno != errno.EEXIST:
|
if err.errno != errno.EEXIST:
|
||||||
logger.critical("Could not open control pipe at: %s", fifopath)
|
logger.critical("Could not open control pipe at: %s", fifopath)
|
||||||
raise
|
raise
|
||||||
|
self.path = fifopath
|
||||||
self.fh = open(fifopath, mode)
|
self.fh = open(fifopath, mode)
|
||||||
|
|
||||||
def __iter__(self): # pragma: noqa
|
def __iter__(self): # pragma: noqa
|
||||||
|
|
Loading…
Reference in New Issue
Block a user