s/RNAME/REALNAME/

This commit is contained in:
nyuszika7h 2014-11-14 13:54:28 +01:00
parent 8fe1cf9ef5
commit 05866b62ca
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ PORT = 6667
USERNAME = "" # for authentication, can be left blank if same as NICK
NICK = "mywolfbot"
IDENT = NICK
RNAME = NICK #realname/gecos, defaults to the same as the nick
REALNAME = NICK
CMD_CHAR = "!"
CHANGING_HOST_QUIT_MESSAGE = "Changing host"

View File

@ -62,7 +62,7 @@ def main():
password=botconfig.PASS,
nickname=botconfig.NICK,
ident=botconfig.IDENT,
real_name=botconfig.RNAME,
real_name=botconfig.REALNAME,
sasl_auth=botconfig.SASL_AUTHENTICATION,
use_ssl=botconfig.USE_SSL,
connect_cb=modules.common.connect_callback