Browse Source

remove print statement

master
jcao219 12 years ago
parent
commit
6d870933eb
  1. 1
      modules/common.py

1
modules/common.py

@ -133,7 +133,6 @@ def connect_callback(cli): @@ -133,7 +133,6 @@ def connect_callback(cli):
nick_b = bytes(botconfig.USERNAME if botconfig.USERNAME else botconfig.NICK, "utf-8")
pass_b = bytes(botconfig.PASS, "utf-8")
secrt_msg = b'\0'.join((nick_b, nick_b, pass_b))
print(secrt_msg)
cli.send("AUTHENTICATE " + b64encode(secrt_msg).decode("utf-8"))
@hook("cap")

Loading…
Cancel
Save