summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas Hoffmann <lucc@posteo.de>2019-11-06 11:27:48 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2019-11-06 10:54:00 +0000
commit2682848336ce2aecde4275c3950b1fe64ed002d2 (patch)
treede3f6f973869a8235869f0583de00168f01f2072
parent414ca6c4b57752d139598e95e06009c55ff4543c (diff)
Remove unicode escape codes
-rw-r--r--alot/buffers/thread.py2
-rw-r--r--alot/commands/envelope.py2
-rw-r--r--alot/helper.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/alot/buffers/thread.py b/alot/buffers/thread.py
index 0314b772..74df6b15 100644
--- a/alot/buffers/thread.py
+++ b/alot/buffers/thread.py
@@ -84,7 +84,7 @@ class ThreadBuffer(Buffer):
heads_char = None
heads_att = None
if self._indent_width > 1:
- heads_char = '\u27a4'
+ heads_char = '➤'
heads_att = settings.get_theming_attribute('thread',
'arrow_heads')
A = ArrowTree(
diff --git a/alot/commands/envelope.py b/alot/commands/envelope.py
index 26c2da49..7a43568a 100644
--- a/alot/commands/envelope.py
+++ b/alot/commands/envelope.py
@@ -236,7 +236,7 @@ class SendCommand(Command):
msg_position='left')) == 'no':
return
- clearme = ui.notify('constructing mail (GPG, attachments)\u2026',
+ clearme = ui.notify('constructing mail (GPG, attachments)…',
timeout=-1)
try:
diff --git a/alot/helper.py b/alot/helper.py
index 2475bbcc..aab3242e 100644
--- a/alot/helper.py
+++ b/alot/helper.py
@@ -179,7 +179,7 @@ def shorten_author_string(authors_string, maxlength):
au = authors.pop()
if len(au) > 1 and (remaining_length == 3 or (authors and
remaining_length < 7)):
- authors_chain.appendleft('\u2026')
+ authors_chain.appendleft('…')
break
else:
if authors: