mirror of https://github.com/mitsuhiko/flask.git
Yash Lodha
9 years ago
3 changed files with 3 additions and 3 deletions
@ -1,4 +1,4 @@
|
||||
import os |
||||
import flask |
||||
here = os.path.abspath(os.path.dirname(__file__)) |
||||
app = flask.Flask(__name__,instance_path=os.path.join(os.path.abspath(os.path.dirname(__file__)),'instance')) |
||||
app = flask.Flask(__name__, instance_path=os.path.join(os.path.abspath(os.path.dirname(__file__)),'instance')) |
||||
|
@ -1,4 +1,4 @@
|
||||
import os |
||||
import flask |
||||
here = os.path.abspath(os.path.dirname(__file__)) |
||||
app = flask.Flask(__name__,instance_path=os.path.join(os.path.abspath(os.path.dirname(os.path.dirname(__file__))),'instance')) |
||||
app = flask.Flask(__name__, instance_path=os.path.join(os.path.abspath(os.path.dirname(os.path.dirname(__file__))),'instance')) |
||||
|
Loading…
Reference in new issue