From 705802da3624e3b2294c30f4cb116442758adc91 Mon Sep 17 00:00:00 2001 From: Ben Adida <ben@adida.net> Date: Sat, 15 Jan 2011 12:28:46 -0800 Subject: [PATCH] tweaked status update message to be shorter --- helios/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helios/views.py b/helios/views.py index 933b5f9..9db4a2f 100644 --- a/helios/views.py +++ b/helios/views.py @@ -497,7 +497,7 @@ def one_election_cast_confirm(request, election): # status update this vote if voter and user and user.can_update_status(): status_update_label = voter.user.update_status_template() % "your smart ballot tracker" - status_update_message = "I voted in %s, my smart tracker is %s.. -- %s" % (election.name, cast_vote.vote_hash[:10], get_election_url(election)) + status_update_message = "I voted in %s - my smart tracker is %s.. #heliosvoting" % (get_election_url(election),cast_vote.vote_hash[:10]) else: status_update_label = None status_update_message = None -- GitLab