commit 4b86e4173bbdd7ebcb26fad669bed1393fb82c87 Author: Chris Wacek cwacek@cs.georgetown.edu Date: Sun Dec 23 00:35:39 2012 -0500
Fixed some debugging things that shouldn't be there --- app.py | 3 +-- templates/index.html | 1 - 2 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/app.py b/app.py index 665f9f2..5e78d05 100644 --- a/app.py +++ b/app.py @@ -174,5 +174,4 @@ def result(): if __name__ == '__main__': # Bind to PORT if defined, otherwise default to 5000. port = int(os.environ.get('PORT', 5000)) - app.debug=True - app.run(host='0.0.0.0', port=port, debug=True) + app.run(host='0.0.0.0', port=port) diff --git a/templates/index.html b/templates/index.html index 3183084..02aa99e 100644 --- a/templates/index.html +++ b/templates/index.html @@ -154,7 +154,6 @@ <div class="form-actions"> <button class="btn btn-primary" ng-click="request()">Submit</button> <button class="btn" ng-click="reset()">Reset</button> - <span>{{state}}</span> </div> </fieldset> </form>
tor-commits@lists.torproject.org