adding proper return code for teapot

This commit is contained in:
Ubergeek 2020-01-24 21:25:25 -05:00
parent 7dd119e36c
commit f4820968ea
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ def teapot():
"width": "stout"
}
]
return jsonify(teapots)
return jsonify(teapots),418
app.run()