aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2013-05-13 17:11:48 +0000
committerbnewbold <bnewbold@robocracy.org>2013-05-13 17:11:48 +0000
commitf786a27b7f1cd81062c1a40d7e99ee3a4094cb99 (patch)
tree4b3584d68a663bd754aadb3ff020fe4446ccaef7
parent1493cdfdec77cfb266b2edb0a46a2996cb33b56c (diff)
downloadpartmom-f786a27b7f1cd81062c1a40d7e99ee3a4094cb99.tar.gz
partmom-f786a27b7f1cd81062c1a40d7e99ee3a4094cb99.zip
fix freezer mimetype problem
-rwxr-xr-xpartmom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/partmom.py b/partmom.py
index b78281d..39cc670 100755
--- a/partmom.py
+++ b/partmom.py
@@ -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)