diff options
author | mathieui <mathieui@mathieui.net> | 2013-07-24 21:34:14 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2013-07-24 21:34:14 +0200 |
commit | 33a9f1434f1fe85db4bf78b8524037356079d5c3 (patch) | |
tree | d59d1a26dc4a3ebcada94ff66896315587203b2e /src/tabs.py | |
parent | 9b51377185be5049e29c8824949fad98db25ca91 (diff) | |
download | poezio-33a9f1434f1fe85db4bf78b8524037356079d5c3.tar.gz poezio-33a9f1434f1fe85db4bf78b8524037356079d5c3.tar.bz2 poezio-33a9f1434f1fe85db4bf78b8524037356079d5c3.tar.xz poezio-33a9f1434f1fe85db4bf78b8524037356079d5c3.zip |
Fix contact removal
Diffstat (limited to 'src/tabs.py')
-rw-r--r-- | src/tabs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py index eb5b2192..3890adaf 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -2613,8 +2613,8 @@ class RosterInfoTab(Tab): else: self.core.information('No roster item to remove') return + roster.remove(jid) del roster[jid] - roster.modified() def command_import(self, arg): """ |