diff options
author | Link Mauve <linkmauve@linkmauve.fr> | 2020-05-24 18:17:43 +0200 |
---|---|---|
committer | Link Mauve <linkmauve@linkmauve.fr> | 2020-05-24 18:17:43 +0200 |
commit | dbef6f435f1788545c2e0593b53e9f22baecf16c (patch) | |
tree | 5eb0db12e5f34fe3f8003bd2ff7a94d44e7de1d1 | |
parent | 4ced0bd7bfcf249b87455f7a228c3803e4a29cca (diff) | |
parent | b176fe3809a658e1bc4291fafd5389f9db34510b (diff) | |
download | poezio-dbef6f435f1788545c2e0593b53e9f22baecf16c.tar.gz poezio-dbef6f435f1788545c2e0593b53e9f22baecf16c.tar.bz2 poezio-dbef6f435f1788545c2e0593b53e9f22baecf16c.tar.xz poezio-dbef6f435f1788545c2e0593b53e9f22baecf16c.zip |
Merge branch 'affiliations-jid' into 'master'
MucTab /affiliation: Add MUC jid in output for context
See merge request poezio/poezio!116
-rw-r--r-- | poezio/tabs/muctab.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/poezio/tabs/muctab.py b/poezio/tabs/muctab.py index b2c4a9df..21e8997d 100644 --- a/poezio/tabs/muctab.py +++ b/poezio/tabs/muctab.py @@ -1667,10 +1667,13 @@ class MucTab(ChatTab): } if all_errors: - self.core.information('Can’t access affiliations', 'Error') + self.core.information( + 'Can’t access affiliations for %s' % jid.bare, + 'Error', + ) return None - lines = ['Affiliations'] + lines = ['Affiliations for %s' % jid.bare] for iq in iqs: if isinstance(iq, (IqError, IqTimeout)): continue |