From 2ff5fdf34778d9fab0e08c7388acd2c06a040734 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Mon, 14 Oct 2019 13:47:48 +0200 Subject: bookmarks: use str where str is expected MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- poezio/bookmarks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'poezio/bookmarks.py') diff --git a/poezio/bookmarks.py b/poezio/bookmarks.py index a812ef03..d9c45be2 100644 --- a/poezio/bookmarks.py +++ b/poezio/bookmarks.py @@ -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 += ':' -- cgit v1.2.3