Skip to content
This repository has been archived by the owner on Feb 16, 2019. It is now read-only.

Commit

Permalink
added: space between option and label
Browse files Browse the repository at this point in the history
  • Loading branch information
devmount committed Feb 10, 2016
1 parent 4fe9190 commit 409601a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/views.py
Expand Up @@ -99,7 +99,7 @@ def sendPollMessage():
text = ""
text = "*" + question + "*\n\n"
for option in range(0, len(options)):
toAdd = ":" + numbers[option] + ":" + options[option] + "\n"
toAdd = ":" + numbers[option] + ": " + options[option] + "\n"
text += unicode(toAdd)

postMessage_url = "https://slack.com/api/chat.postMessage"
Expand Down

0 comments on commit 409601a

Please sign in to comment.