Skip to content

Commit a5036e6

Browse files
authored
Merge pull request #164 from azatoth/unicode_literals
use unicode literals in shell instead of python2-only byte strings
2 parents dbeaf2e + 53acc35 commit a5036e6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lambda_uploader/shell.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
LOG = logging.getLogger(__name__)
3131

3232
NAMESPACE = 'rax_jira'
33-
CHECK = '\xe2\x9c\x85'
34-
INTERROBANG = '\xe2\x81\x89\xef\xb8\x8f'
35-
RED_X = '\xe2\x9d\x8c'
36-
LAMBDA = '\xce\xbb'
33+
CHECK = ''
34+
INTERROBANG = ''
35+
RED_X = ''
36+
LAMBDA = 'λ'
3737
TRACEBACK_MESSAGE = """%s Unexpected error. Please report this traceback.
3838
Uploader: %s
3939
Botocore: %s

0 commit comments

Comments
 (0)