From 18151a095e176678f48555b53083c96c2b995501 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sat, 25 Jul 2015 19:13:02 +0300 Subject: [PATCH] Decode filename to unicode, encode to utf-8 for Insert --- reload_db.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reload_db.py b/reload_db.py index 060b05c..9dbbd02 100755 --- a/reload_db.py +++ b/reload_db.py @@ -32,12 +32,12 @@ with SQLiteMassInsert() as txn: id, timestamp, filename = line.strip().split(None, 2) id = convert_str(id) timestamp = convert_str(timestamp) - if fs_encoding != 'utf-8': - filename = filename.decode(fs_encoding).encode('utf-8') + filename = filename.decode(fs_encoding) try: row = xsetbg_db.byFull_name(filename) except SQLObjectNotFound: - values = {'last_shown': timestamp, 'full_name': filename} + values = {'last_shown': timestamp, + 'full_name': filename.encode('utf-8')} if id: values['id'] = id query = txn.sqlrepr(Insert(xsetbg_db.sqlmeta.table, values=values)) -- 2.39.2