Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/nbxmpp
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2020-10-17 22:42:14 +0300
committerlovetox <philipp@hoerist.com>2020-10-17 22:42:14 +0300
commite68838b484a3af1cb7b7f4988489e034f1bc82de (patch)
treeeba3a4d540bfb7e298240d10a9486e442f6f669b /nbxmpp
parent49a9e3ab3cf5653cae5681e3d2c440d90c407de1 (diff)
Bookmarks: Fix method call
Diffstat (limited to 'nbxmpp')
-rw-r--r--nbxmpp/modules/bookmarks/native_bookmarks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nbxmpp/modules/bookmarks/native_bookmarks.py b/nbxmpp/modules/bookmarks/native_bookmarks.py
index 16da9e9..3d08fbd 100644
--- a/nbxmpp/modules/bookmarks/native_bookmarks.py
+++ b/nbxmpp/modules/bookmarks/native_bookmarks.py
@@ -91,7 +91,7 @@ class NativeBookmarks(BaseModule):
bookmarks = []
for item in items:
try:
- bookmark_item = self.parse_bookmark(item)
+ bookmark_item = parse_bookmark(item)
except MalformedStanzaError as error:
self._log.warning(error)
self._log.warning(error.stanza)