Mercurial > wikked
view manage.py @ 8:793234411100
Fixed Mercurial files incorrectly included as pages.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 19 Dec 2012 20:30:49 -0800 |
parents | c946f4facfa2 |
children | 30ae685b86df |
line wrap: on
line source
import os.path from flask.ext.script import Manager, Command from wikked import app manager = Manager(app) @manager.command def stats(): """Prints some stats about the wiki.""" pass if __name__ == "__main__": manager.run()