summaryrefslogtreecommitdiff
path: root/src/core.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2012-03-13 21:39:06 +0100
committermathieui <mathieui@mathieui.net>2012-03-13 21:39:06 +0100
commitc6e435870606629b97521c838c676708af328841 (patch)
treee0befb6714171d23569b6c8f248647de79188b67 /src/core.py
parent5ce8105ec697938bb1b40744b47f299c74727f9c (diff)
downloadpoezio-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.py4
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')