diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-02-19 22:24:10 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-02-19 22:24:10 +0100 |
commit | 49577bdeeebfba046cc558e1b081178ae3f2ed7f (patch) | |
tree | 143865634f6fc3dd01ec432fc27d664401caa492 | |
parent | This test will be used for some weeks in order to avoid duplicates with the n... (diff) | |
download | newspipe-49577bdeeebfba046cc558e1b081178ae3f2ed7f.tar.gz newspipe-49577bdeeebfba046cc558e1b081178ae3f2ed7f.tar.bz2 newspipe-49577bdeeebfba046cc558e1b081178ae3f2ed7f.zip |
Removed unused import.
-rw-r--r-- | manage.py | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -1,12 +1,10 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -import os from flask.ext.script import Manager from flask.ext.migrate import Migrate, MigrateCommand from pyaggr3g470r import app, db -#app.config.from_object(os.environ['APP_SETTINGS']) migrate = Migrate(app, db) manager = Manager(app) |