bookmarks: use str where str is expected
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
1e45e265a1
commit
2ff5fdf347
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ class Bookmark:
|
|||
|
||||
def local(self) -> str:
|
||||
"""Generate a str for local storage"""
|
||||
local = self.jid
|
||||
local = str(self.jid)
|
||||
if self.nick:
|
||||
local += '/%s' % self.nick
|
||||
local += ':'
|
||||
|
|
Loading…
Reference in a new issue