From d503b62cd1915fc311fb55ce0d975d0b7280fe4b Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 8 Oct 2013 07:42:06 +0900 Subject: [PATCH] fix display of non-latin tags --- aqt/browser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aqt/browser.py b/aqt/browser.py index b9f18b971..91c4b5644 100644 --- a/aqt/browser.py +++ b/aqt/browser.py @@ -236,7 +236,7 @@ class DataModel(QAbstractTableModel): elif type == "cardLapses": return str(c.lapses) elif type == "noteTags": - return str(" ".join(c.note().tags)) + return " ".join(c.note().tags) elif type == "note": return c.model()['name'] elif type == "cardIvl":