Files
reflog/migrate.py
T
Kenneth Reitz 2e7eca2a60 migrate db
2011-04-07 09:53:19 -04:00

18 lines
281 B
Python
Executable File

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from clint.textui import puts, colored, progress, indent
from dashboard import app, g, redis_connect
app.test_request_context('/').push()
redis = redis_connect()
def main():
print '\o/'
if __name__ == '__main__':
main()