From d6d8537b690d03f82aa5f7ebe9468839d5bb0839 Mon Sep 17 00:00:00 2001
From: Daniel Quinn <code@danielquinn.org>
Date: Sun, 17 Jun 2018 17:23:50 +0100
Subject: [PATCH] Remove emoji from storage-type changer

---
 src/documents/management/commands/change_storage_type.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/documents/management/commands/change_storage_type.py b/src/documents/management/commands/change_storage_type.py
index 010b0900c..668f534a9 100644
--- a/src/documents/management/commands/change_storage_type.py
+++ b/src/documents/management/commands/change_storage_type.py
@@ -75,7 +75,7 @@ class Command(BaseCommand):
 
         for document in encrypted_files:
 
-            print(coloured("🔓 Decrypting {}".format(document), "green"))
+            print(coloured("Decrypting {}".format(document), "green"))
 
             old_paths = [document.source_path, document.thumbnail_path]
             raw_document = GnuPG.decrypted(document.source_file, passphrase)
@@ -102,7 +102,7 @@ class Command(BaseCommand):
 
         for document in unencrypted_files:
 
-            print(coloured("🔒 Encrypting {}".format(document), "green"))
+            print(coloured("Encrypting {}".format(document), "green"))
 
             old_paths = [document.source_path, document.thumbnail_path]
             with open(document.source_path, "rb") as raw_document: