diff options
author | Zachary Sloan | 2013-01-08 18:02:23 -0600 |
---|---|---|
committer | Zachary Sloan | 2013-01-08 18:02:23 -0600 |
commit | e7e5eb671fea08f59f102726cfd27251bb5dba33 (patch) | |
tree | e5de5c6e3bc310061bd897ea7dd65696b37dbe71 /wqflask | |
parent | 34b0cc3a931e266b6382c961d6321ccc9b3ac430 (diff) | |
download | genenetwork2-e7e5eb671fea08f59f102726cfd27251bb5dba33.tar.gz |
js_data is being printed out (seemingly) correctly now for the
marker_regression page
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/views.py b/wqflask/wqflask/views.py index fc628d77..c9659a83 100644 --- a/wqflask/wqflask/views.py +++ b/wqflask/wqflask/views.py @@ -155,7 +155,7 @@ def marker_regression_page(): default=json_default_handler, indent=" ") print("[dub] js_data after dump:", template_vars.js_data) - print("marker_regression template_vars:", pf(template_vars.__dict__)) + #print("marker_regression template_vars:", pf(template_vars.__dict__)) return render_template("marker_regression.html", **template_vars.__dict__) @app.route("/corr_compute", methods=('POST',)) |