diff options
author | mathieui <mathieui@mathieui.net> | 2012-03-13 21:39:06 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-03-13 21:39:06 +0100 |
commit | c6e435870606629b97521c838c676708af328841 (patch) | |
tree | e0befb6714171d23569b6c8f248647de79188b67 /src/core.py | |
parent | 5ce8105ec697938bb1b40744b47f299c74727f9c (diff) | |
download | poezio-c6e435870606629b97521c838c676708af328841.tar.gz poezio-c6e435870606629b97521c838c676708af328841.tar.bz2 poezio-c6e435870606629b97521c838c676708af328841.tar.xz poezio-c6e435870606629b97521c838c676708af328841.zip |
Fix bookmarks
Diffstat (limited to 'src/core.py')
-rw-r--r-- | src/core.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core.py b/src/core.py index 5c350b59..ccf8262c 100644 --- a/src/core.py +++ b/src/core.py @@ -1935,14 +1935,14 @@ class Core(object): bookmark.remove(tab.get_name()) bookmark.save(self.xmpp) if bookmark.save(self.xmpp): - self.core.information('Bookmark deleted', 'Info') + self.information('Bookmark deleted', 'Info') else: self.information('No bookmark to remove', 'Info') else: if bookmark.get_by_jid(args[0]): bookmark.remove(args[0]) if bookmark.save(self.xmpp): - self.core.information('Bookmark deleted', 'Info') + self.information('Bookmark deleted', 'Info') else: self.information('No bookmark to remove', 'Info') |