Commit 2b4cf2a18debeab4149bfbf0144c8428660fbe59
1 parent
0d18ee31
Exists in
master
fix: use a qualified path in local imports
This is a stepping stone towards python 3 support, that we need to fix the geocoder.
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
flaskr/geocoder.py
flaskr/models.py
... | ... | @@ -8,7 +8,7 @@ from flask_sqlalchemy import SQLAlchemy |
8 | 8 | from werkzeug.security import generate_password_hash, check_password_hash |
9 | 9 | from yaml import safe_load as yaml_load |
10 | 10 | |
11 | -from content import get_path, base_url | |
11 | +from flaskr.content import get_path, base_url | |
12 | 12 | from flaskr.core import generate_unique_id, models |
13 | 13 | |
14 | 14 | # These are not the emission "models" in the scientific meaning of the word. | ... | ... |