Skip to content

Commit

Permalink
Fixed accessing the team name
Browse files Browse the repository at this point in the history
  • Loading branch information
WillPapper committed May 23, 2014
1 parent 9882d80 commit edbaf59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,12 @@ def post(self):
token = data['token']
amount = data['amount']
name = data.get('name', '')
team = data['team']

occupation = data['userinfo']['occupation']
employer = data['userinfo']['employer']
phone = data['userinfo']['phone']
target = data['userinfo']['target']
team = data['userinfo']['team']

try:
amount = int(amount)
Expand Down

0 comments on commit edbaf59

Please sign in to comment.