formatting

pull/4/head
Blake DeMarcy 2017-04-03 03:52:51 -05:00
parent 4b428f026d
commit 3861893f9c
3 changed files with 4 additions and 3 deletions

View File

@ -35,7 +35,7 @@ def api_method(function):
body = json.loads(body)
if isinstance(body, dict):
# lowercase all of its top-level keys
body = {str(key).lower(): value for key, value in body.items()}
body = {key.lower(): value for key, value in body.items()}
username = cherrypy.request.headers.get("User")
auth = cherrypy.request.headers.get("Auth")

View File

@ -20,6 +20,7 @@ EOF
--dbset )
sqlite3 data.sqlite < schema.sql
echo cleared
chmod 400 data.sqlite
exit;;
esac
@ -30,4 +31,4 @@ echo Using $PYTHON...
$PYTHON -m pip install ${DEPS[*]}
echo "Enter [i] to initialize a new database"
read CLEAR
[[ $CLEAR == "i" ]] && sqlite3 bbj.db < schema.sql
[[ $CLEAR == "i" ]] && sqlite3 bbj.db < schema.sql; chmod 400 data.sqlite

View File

@ -19,7 +19,7 @@ If "error" is true, it looks like this:
"error": {
"code": an integer from 0 to 5,
"description": a string describing the error in detail.
}
}
"data": null // ALWAYS null if error is not false
"usermap": {} // ALWAYS empty if error is not false
}