forked from Firepup650/FireBot
Formatting
This commit is contained in:
parent
039bcfac9f
commit
b5aee62341
1 changed files with 3 additions and 1 deletions
|
@ -362,7 +362,9 @@ def main():
|
||||||
chan,
|
chan,
|
||||||
)
|
)
|
||||||
elif mfind(message, ["uptime"]):
|
elif mfind(message, ["uptime"]):
|
||||||
uptime = run(["uptime","-p"], stdout=PIPE).stdout.decode().strip()
|
uptime = (
|
||||||
|
run(["uptime", "-p"], stdout=PIPE).stdout.decode().strip()
|
||||||
|
)
|
||||||
sendmsg(
|
sendmsg(
|
||||||
f"Uptime: {uptime}",
|
f"Uptime: {uptime}",
|
||||||
chan,
|
chan,
|
||||||
|
|
Loading…
Reference in a new issue