diff options
| author | Feth AREZKI <feth@tuttu.info> | 2012-03-06 22:14:10 +0100 |
|---|---|---|
| committer | Feth AREZKI <feth@tuttu.info> | 2012-03-06 22:14:10 +0100 |
| commit | e04a4154e874cfa2987170873fc1af66a9f084ac (patch) | |
| tree | 4cfc03e12b52becd1d1c3b6ebfcaa5a182e0fc65 /budget/run.py | |
| parent | e22ee5dfd21d97802dc55ddc9f44d905dfc4cd67 (diff) | |
| download | ihatemoney-mirror-e04a4154e874cfa2987170873fc1af66a9f084ac.zip ihatemoney-mirror-e04a4154e874cfa2987170873fc1af66a9f084ac.tar.gz ihatemoney-mirror-e04a4154e874cfa2987170873fc1af66a9f084ac.tar.bz2 | |
remove unused imports and from blah import *
Diffstat (limited to 'budget/run.py')
| -rw-r--r-- | budget/run.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/budget/run.py b/budget/run.py index 3d57329..9065a34 100644 --- a/budget/run.py +++ b/budget/run.py @@ -1,9 +1,9 @@ +from flask import Flask, g, request, session +from flaskext.babel import Babel + from web import main, db, mail from api import api -import os -from flask import * -from flaskext.babel import Babel app = Flask(__name__) app.config.from_object("default_settings") |
