From 903c99697d1bdf1db334a9da7c19213215e205f5 Mon Sep 17 00:00:00 2001 From: Alexander Schmidt Date: Sat, 3 Oct 2020 22:20:33 +0200 Subject: [PATCH] fix fifo check --- src/mtxbot-post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5