diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..e5c098a --- /dev/null +++ b/.pylintrc @@ -0,0 +1,3 @@ +[MASTER] +#py3k +max-line-length=88 diff --git a/bot_z/utils.py b/bot_z/utils.py index 7e03983..7548b63 100644 --- a/bot_z/utils.py +++ b/bot_z/utils.py @@ -53,6 +53,7 @@ class Fifo: if err.errno != errno.EEXIST: logger.critical("Could not open control pipe at: %s", fifopath) raise + self.path = fifopath self.fh = open(fifopath, mode) def __iter__(self): # pragma: noqa