diff options
author | bnewbold <bnewbold@robocracy.org> | 2013-05-13 17:11:48 +0000 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2013-05-13 17:11:48 +0000 |
commit | f786a27b7f1cd81062c1a40d7e99ee3a4094cb99 (patch) | |
tree | 4b3584d68a663bd754aadb3ff020fe4446ccaef7 | |
parent | 1493cdfdec77cfb266b2edb0a46a2996cb33b56c (diff) | |
download | partmom-f786a27b7f1cd81062c1a40d7e99ee3a4094cb99.tar.gz partmom-f786a27b7f1cd81062c1a40d7e99ee3a4094cb99.zip |
fix freezer mimetype problem
-rwxr-xr-x | partmom.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,11 +15,11 @@ app.config.from_object(__name__) def index(): return render_template('index.html') -@app.route('/xilinx/spartan6', methods=['GET']) +@app.route('/xilinx/spartan6/', methods=['GET']) def xilinx_spartan6(): return render_template('grid.html', grid=xilinx.spartan6_grid) -@app.route('/xilinx/zynq7000', methods=['GET']) +@app.route('/xilinx/zynq7000/', methods=['GET']) def xilinx_zynq7000(): return render_template('grid.html', grid=xilinx.zynq7000_grid) |