Skip to content

Commit

Permalink
changed default fullname to username instead of nick
Browse files Browse the repository at this point in the history
  • Loading branch information
madewokherd committed Jul 18, 2007
1 parent 3611f7f commit 06cb07e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion irc.py
Expand Up @@ -64,7 +64,7 @@ def __init__(self, server="irc.default.org", port=6667, nicks=[],
self.me = self.nicks[0]

self.username = username or "urk"
self.fullname = fullname or conf.get("fullname", self.me)
self.fullname = fullname or conf.get("fullname", self.username)
self.password = ''

self.isupport = {
Expand Down

0 comments on commit 06cb07e

Please sign in to comment.