mirror of
git://git.acid.vegas/archive.git
synced 2024-11-22 08:06:40 +00:00
Added missing semicolon
This commit is contained in:
parent
e987568dc9
commit
ba9f5107ce
@ -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))
|
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):
|
async def loop_tail(self):
|
||||||
if not os.path.exists(FIFO_PATH)
|
if not os.path.exists(FIFO_PATH):
|
||||||
os.mkfifo(FIFO_PATH)
|
os.mkfifo(FIFO_PATH)
|
||||||
while True:
|
while True:
|
||||||
with open(FIFO_PATH) as fifo:
|
with open(FIFO_PATH) as fifo:
|
||||||
|
Loading…
Reference in New Issue
Block a user