From: Alexander Schmidt Date: Sat, 3 Oct 2020 20:20:33 +0000 (+0200) Subject: fix fifo check X-Git-Url: http://git.treefish.org/~alex/mtxbot.git/commitdiff_plain/903c99697d1bdf1db334a9da7c19213215e205f5?ds=sidebyside fix fifo check --- diff --git a/src/mtxbot-post.py b/src/mtxbot-post.py index 3673eda..61cbdf2 100755 --- a/src/mtxbot-post.py +++ b/src/mtxbot-post.py @@ -20,7 +20,7 @@ if not os.path.isdir(fifo_dir): print("Fifo directory %s does not exist!" % fifo_dir, file=sys.stderr) sys.exit(2) -if not stat.S_ISFIFO( os.stat(fifo_path).st_mode ): +if not ( os.exists(fifo_path) and stat.S_ISFIFO(os.stat(fifo_path).st_mode) ): print("Channel %s does not exist!" % sys.argv[1], file=sys.stderr) sys.exit(3)