Browse Source

bottle: Use debug=False

INADA Naoki 12 years ago
parent
commit
a90d64dfbc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bottle/app.py

+ 1 - 1
bottle/app.py

@@ -92,4 +92,4 @@ def fortune_raw():
   return template('fortune', fortunes=fortunes)
 
 if __name__ == "__main__":
-    app.run(host='0.0.0.0', debug=True)
+    app.run(host='0.0.0.0', debug=False)