aboutsummaryrefslogtreecommitdiff
path: root/modules/ids.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-09-05 12:58:12 +0100
committerGravatar jesopo2018-09-05 12:58:12 +0100
commitf2aeaf77975fedbc31d9ea1ccc809b949281cc13 (patch)
tree8c680e5af5ca3842a2e54abc82cf83b487efc991 /modules/ids.py
parentCorrectly keep track of IRCUser.identified_account_id (diff)
signature
Don't use IRCUser.id ever, use IRCUser.get_id()
Diffstat (limited to 'modules/ids.py')
-rw-r--r--modules/ids.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ids.py b/modules/ids.py
index 8e5dc838..17b20a6e 100644
--- a/modules/ids.py
+++ b/modules/ids.py
@@ -11,7 +11,7 @@ class Module(object):
def my_id(self, event):
event["stdout"].write("%s: %d" % (event["user"].nickname,
- event["user"].id))
+ event["user"].get_id()))
def channel_id(self, event):
event["stdout"].write("%s: %d" % (event["target"].name,