diff options
| author | 2018-09-05 12:58:12 +0100 | |
|---|---|---|
| committer | 2018-09-05 12:58:12 +0100 | |
| commit | f2aeaf77975fedbc31d9ea1ccc809b949281cc13 (patch) | |
| tree | 8c680e5af5ca3842a2e54abc82cf83b487efc991 /modules/ids.py | |
| parent | Correctly 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.py | 2 |
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, |
