Added missing semicolon

This commit is contained in:
Dionysus 2023-07-22 23:46:49 -04:00
parent e987568dc9
commit ba9f5107ce
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class Bot():
await self.sendmsg(chan, '[{0}] {1} {2}'.format(color('ERROR', red), msg, color(f'({reason})', grey))) if reason else await self.sendmsg(chan, '[{0}] {1}'.format(color('ERROR', red), msg))
async def loop_tail(self):
if not os.path.exists(FIFO_PATH)
if not os.path.exists(FIFO_PATH):
os.mkfifo(FIFO_PATH)
while True:
with open(FIFO_PATH) as fifo: