|
@ -373,7 +373,7 @@ class WikiApp(Flask): |
|
|
def favicon(self): |
|
|
def favicon(self): |
|
|
return Response('', status=200) |
|
|
return Response('', status=200) |
|
|
|
|
|
|
|
|
|
|
|
app = WikiApp(__name__) |
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
if __name__ == '__main__': |
|
|
app = WikiApp(__name__) |
|
|
app.run(debug=False) |
|
|
app.run(debug=True) |
|
|
|
|
|