diff --git a/files/helpers/sanitize.py b/files/helpers/sanitize.py index fb79b5a10..3a1d08a02 100644 --- a/files/helpers/sanitize.py +++ b/files/helpers/sanitize.py @@ -209,7 +209,8 @@ def sanitize(sanitized, golden=True, limit_pings=0, showmore=True, count_marseys if torture: sanitized = torture_ap(sanitized, g.v.username) - sanitized += '\n:#trumpjaktalking:' if random.random() >= 0.50 else '\n:#reposthorse:' + emoji = choice(['trumpjaktalking', 'reposthorse']) + sanitized += f'\n:#{emoji}:' sanitized = normalize_url(sanitized)