summaryrefslogtreecommitdiffstats
path: root/notcqst.py
diff options
context:
space:
mode:
authorcqst <cqst@cqstia.com>2025-08-22 20:53:34 -0700
committercqst <cqst@cqstia.com>2025-08-22 20:53:34 -0700
commit846fe03c903d005432e575d516e194607371e78f (patch)
treef3c43d4cc49c850864125931cb6c0801aec163de /notcqst.py
parent8d0515ea50f4babd747c0209736a06ca900c54e1 (diff)
fix command_hello
Diffstat (limited to 'notcqst.py')
-rw-r--r--notcqst.py18
1 files changed, 1 insertions, 17 deletions
diff --git a/notcqst.py b/notcqst.py
index 7df9199..6354f34 100644
--- a/notcqst.py
+++ b/notcqst.py
@@ -6,7 +6,6 @@ from yt_dlp import YoutubeDL
# TODO eradicate global variables
-# TODO add SSL support
reconnect = 0
text_str = 0
@@ -73,7 +72,7 @@ def command_flag(irc):
command = split_spaces[1].strip()
match command:
case "choose": command_choose(split_spaces, irc)
- case "hello": command_hello()
+ case "hello": command_hello(irc)
case _: unknown_command()
@@ -115,18 +114,3 @@ def connect_loop(irc):
print("connecting to: " + hostname)
connect_checked()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-