diff --git a/bubbles/commands/ping.py b/bubbles/commands/ping.py index b141f10..b031040 100644 --- a/bubbles/commands/ping.py +++ b/bubbles/commands/ping.py @@ -2,7 +2,7 @@ def ping(payload): - payload["extras"]["say"]("PONG!?") + payload["extras"]["say"]("PONG!!!") PLUGIN = Plugin(callable=ping, regex=r"^ping$", help="!ping - PONG") diff --git a/bubbles/commands/update_and_restart.py b/bubbles/commands/update_and_restart.py index 232bb30..b13d70b 100644 --- a/bubbles/commands/update_and_restart.py +++ b/bubbles/commands/update_and_restart.py @@ -1,7 +1,6 @@ import os import shlex import subprocess -import traceback from pathlib import Path import requests