aboutsummaryrefslogtreecommitdiff
path: root/IRCUser.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-09-05 13:00:04 +0100
committerGravatar jesopo2018-09-05 13:00:04 +0100
commit1cc850350d72eed06a8aa41d1cf389430c06e9c5 (patch)
treea1053767288469cbecd492f6ff3064a7bdbe85c1 /IRCUser.py
parentAdd another control to prevent coin duplication if someone manages to send coins (diff)
signature
user.id -> user._id; forgot to do this
Diffstat (limited to 'IRCUser.py')
-rw-r--r--IRCUser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/IRCUser.py b/IRCUser.py
index d6f1c79c..eea2d532 100644
--- a/IRCUser.py
+++ b/IRCUser.py
@@ -4,7 +4,7 @@ import IRCBuffer
class User(object):
def __init__(self, nickname, id, server, bot):
self.set_nickname(nickname)
- self.id = id
+ self._id = id
self.username = None
self.hostname = None
self.realname = None