Slight mistakes in traceback handling

This commit is contained in:
Firepup Sixfifty 2024-06-05 13:15:34 -05:00
parent 8094d335de
commit 65717b9ad9
Signed by: Firepup650
GPG key ID: 7C92E2ABBBFAB9BA

View file

@ -119,7 +119,7 @@ if __name__ == "__main__":
ts = found["ts"]
except Exception as E:
print("[WARN] Exception:")
for line in format_exc():
for line in format_exc().split("\n")[:-1]:
print(f"[WARN] {line}")
break
else:
@ -139,7 +139,7 @@ if __name__ == "__main__":
print("[INFO] Message sent (to the thread)!")
except Exception as E:
print("[WARN] Exception:")
for line in format_exc():
for line in format_exc().split("\n")[:-1]:
print(f"[WARN] {line}")
break
except KeyboardInterrupt:
@ -154,7 +154,7 @@ if __name__ == "__main__":
print("[INFO] Message sent (to the channel)!")
except Exception as E:
print("[WARN] Exception:")
for line in format_exc():
for line in format_exc().split("\n")[:-1]:
print(f"[WARN] {line}")
break
except KeyboardInterrupt: