view manage.py @ 1:37aa641facaf

Fixed title for history page.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 11 Dec 2012 22:13:10 -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()