Skip to content

Commit

Permalink
cloudapp's inconsistent date format
Browse files Browse the repository at this point in the history
  • Loading branch information
posativ committed Sep 2, 2011
1 parent 0a89a55 commit fb7848c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wolken/REST.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def account(environ, request):
acc = db.accounts.find({'email': email})[0]
acc['id'] = int(str(acc['_id']), 16)
acc['subscribed'] = True
acc['subscription_expires_at'] = '2012-12-21T00:00:00Z'
acc['subscription_expires_at'] = '2012-12-21'

del acc['_id']; del acc['items']
return Response(json.dumps(acc), 200, content_type='application/json; charset=utf-8')
Expand Down

0 comments on commit fb7848c

Please sign in to comment.