Skip to content

Commit

Permalink
update gevent, fix typo in views
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Percival committed Sep 18, 2018
1 parent bd16805 commit aa6f0bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions authome/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,10 +257,10 @@ def auth(request):
}
response = HttpResponse(json.dumps(response_contents), content_type='application/json')
headers = response_contents
headers["full_name"] = u" ".join(
headers["full_name"] = u" ".join([
headers.get("first_name", ""),
headers.get("last_name", ""),
).strip()
]).strip()
headers["logout_url"] = "/sso/auth_logout"

# cache response
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ psycopg2==2.7.4
coverage==4.2
coveralls==1.1
mock==2.0.0
gevent==1.1.2
gevent==1.3.6
uWSGI==2.0.15
uwsgitop==0.10
six==1.11.0

0 comments on commit aa6f0bb

Please sign in to comment.