diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2021-08-06 17:14:13 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2021-08-06 17:18:06 +0200 |
commit | 5d285ffb962ec16b9b0f3e5d7425a3ea2fae2579 (patch) | |
tree | 9f2d8b4460cda182e5faf986e58697ac1209281b /plugins/xB/youtube | |
parent | 50057d5149dda340b3b47aca4096f4a6ec66b9ee (diff) | |
download | xK-5d285ffb962ec16b9b0f3e5d7425a3ea2fae2579.tar.gz xK-5d285ffb962ec16b9b0f3e5d7425a3ea2fae2579.tar.xz xK-5d285ffb962ec16b9b0f3e5d7425a3ea2fae2579.zip |
xB: fix up the special IPC command's name
To reflect the new disorder.
Diffstat (limited to 'plugins/xB/youtube')
-rwxr-xr-x | plugins/xB/youtube | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/xB/youtube b/plugins/xB/youtube index 0bf0c1e..feaab96 100755 --- a/plugins/xB/youtube +++ b/plugins/xB/youtube @@ -27,12 +27,12 @@ class Plugin: return (nick, user, host, command, args) def get_config (self, key): - print ("ZYKLONB get_config :%s" % key) + print ("XB get_config :%s" % key) (_, _, _, _, args) = self.parse (sys.stdin.readline ()) return args[0] def bot_print (self, what): - print ('ZYKLONB print :%s' % what) + print ('XB print :%s' % what) class YouTube (Plugin): re_videos = [re.compile (x) for x in [ @@ -98,7 +98,7 @@ class YouTube (Plugin): if self.youtube_api_key == "": self.bot_print ("youtube: missing `youtube_api_key'") - print ("ZYKLONB register") + print ("XB register") for line in sys.stdin: self.process_line (line) |