aboutsummaryrefslogtreecommitdiff
path: root/manage.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-19 22:24:10 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-19 22:24:10 +0100
commit49577bdeeebfba046cc558e1b081178ae3f2ed7f (patch)
tree143865634f6fc3dd01ec432fc27d664401caa492 /manage.py
parentThis test will be used for some weeks in order to avoid duplicates with the n... (diff)
downloadnewspipe-49577bdeeebfba046cc558e1b081178ae3f2ed7f.tar.gz
newspipe-49577bdeeebfba046cc558e1b081178ae3f2ed7f.tar.bz2
newspipe-49577bdeeebfba046cc558e1b081178ae3f2ed7f.zip
Removed unused import.
Diffstat (limited to 'manage.py')
-rw-r--r--manage.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/manage.py b/manage.py
index 9a9b7291..056fef2c 100644
--- a/manage.py
+++ b/manage.py
@@ -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)
bgstack15