aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--wee_slack.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/wee_slack.py b/wee_slack.py
index eb9e278..b697fe3 100644
--- a/wee_slack.py
+++ b/wee_slack.py
@@ -2846,8 +2846,8 @@ def resolve_ref(ref):
def create_user_status_string(profile):
- status_emoji = profile.get("status_emoji") if profile.get("status_emoji") else "None"
- status_text = profile.get("status_text") if profile.get("status_text") else "None"
+ status_emoji = profile.get("status_emoji")
+ status_text = profile.get("status_text")
return "[{}] {}".format(status_emoji, status_text)