view manage.py @ 5:c87e7de7ed31

More consistent UI for the incoming links page.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 19 Dec 2012 20:29:14 -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()