diff options
author | cqst <cqst@cqstia.com> | 2025-08-22 20:53:34 -0700 |
---|---|---|
committer | cqst <cqst@cqstia.com> | 2025-08-22 20:53:34 -0700 |
commit | 846fe03c903d005432e575d516e194607371e78f (patch) | |
tree | f3c43d4cc49c850864125931cb6c0801aec163de /notcqst.py | |
parent | 8d0515ea50f4babd747c0209736a06ca900c54e1 (diff) |
fix command_hello
Diffstat (limited to 'notcqst.py')
-rw-r--r-- | notcqst.py | 18 |
1 files changed, 1 insertions, 17 deletions
@@ -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() - - - - - - - - - - - - - - - |