We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d99627 commit d65d1edCopy full SHA for d65d1ed
qwebirc/ircclient.py
@@ -80,7 +80,7 @@ def connectionMade(self):
80
hmac = hmacfn(ident, ip)
81
self.write("USER %s bleh bleh %s %s :%s" % (ident, ip, hmac, realname))
82
elif config.WEBIRC_MODE == "webirc":
83
- self.write("WEBIRC %s qwebirc %s %s" % (config.WEBIRC_PASSWORD, ip, hostname))
+ self.write("WEBIRC %s qwebirc %s %s" % (config.WEBIRC_PASSWORD, hostname, ip))
84
self.write("USER %s bleh %s :%s" % (ident, ip, realname))
85
else:
86
if ip == hostname:
0 commit comments