avoid error when decrypting files with non-ascii character

This commit is contained in:
domphonallmen 2019-04-02 11:38:00 +02:00 committed by GitHub
parent 7687e7ca53
commit 117726ec72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,7 +75,7 @@ class Command(BaseCommand):
for document in encrypted_files:
print(coloured("Decrypting {}".format(document), "green"))
print(coloured("Decrypting {}".format(document).encode('utf-8'), "green"))
old_paths = [document.source_path, document.thumbnail_path]
raw_document = GnuPG.decrypted(document.source_file, passphrase)