diff options
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) |