diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2016-03-31 23:24:58 +0100 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2016-06-12 14:33:39 +0100 |
commit | c1be52847bae48215a8e5589b3a3b94bc1bb913c (patch) | |
tree | 36c1cbad9a615d404a345cbdb8309519c98e5185 /plugins/screen_detach.py | |
parent | 37cd7d1924e666dada17bd691d7eb4894eb51a4e (diff) | |
download | poezio-c1be52847bae48215a8e5589b3a3b94bc1bb913c.tar.gz poezio-c1be52847bae48215a8e5589b3a3b94bc1bb913c.tar.bz2 poezio-c1be52847bae48215a8e5589b3a3b94bc1bb913c.tar.xz poezio-c1be52847bae48215a8e5589b3a3b94bc1bb913c.zip |
Fix core commands, broken in the previous commit.
Diffstat (limited to 'plugins/screen_detach.py')
-rw-r--r-- | plugins/screen_detach.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/screen_detach.py b/plugins/screen_detach.py index 793575d8..e6c02a88 100644 --- a/plugins/screen_detach.py +++ b/plugins/screen_detach.py @@ -99,7 +99,7 @@ class Plugin(BasePlugin, pyinotify.Notifier): if attached != self.attached: self.attached = attached status = 'available' if self.attached else 'away' - self.core.command_status(status) + self.core.command.status(status) if self.config.get('use_csi'): if self.attached: self.core.xmpp.plugin['xep_0352'].send_active() |