diff options
-rw-r--r-- | wee_slack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wee_slack.py b/wee_slack.py index 79ce80a..a3d779c 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -368,7 +368,7 @@ def get_thread_color(thread_id): def sha1_hex(s): - return hashlib.sha1(s.encode('utf-8')).hexdigest() + return str(hashlib.sha1(s.encode('utf-8')).hexdigest()) def get_functions_with_prefix(prefix): |