user_external was lacking an explicit bool()

This commit is contained in:
Blake DeMarcy 2017-04-14 05:27:44 -05:00
parent c699f50dac
commit 42b934929b
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ def user_external(
"quip": quip,
"bio": bio,
"color": color,
"is_admin": admin,
"is_admin": bool(admin),
"created": created
}