diff options
| author | 2019-11-22 11:48:29 +0000 | |
|---|---|---|
| committer | 2019-11-22 11:50:23 +0000 | |
| commit | 3935bf3a30a409bfae09abfe5bcb99240236ed24 (patch) | |
| tree | 8db4b36198e3ebd47228cfe8bcc1032f4b5df74f /modules/ids.py | |
| parent | correctly detect when a track has tags (lastfm) (diff) | |
IRCUser.get_identified_account() doesn't exist anymore
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 20a641b7..1738c549 100644 --- a/modules/ids.py +++ b/modules/ids.py @@ -16,7 +16,7 @@ class Module(ModuleManager.BaseModule): @utils.kwarg("help", "Show what I think your account name is") def account(self, event): event["stdout"].write("%s: %s" % (event["user"].nickname, - event["user"].get_identified_account())) + self.exports.get_one("account-name")(event["user"]))) @utils.hook("received.command.channelid", channel_only=True) def channel_id(self, event): |
