Implicit relative imports are discouraged (http://legacy.python.org/dev/peps/pep-0008/#imports) and no longer supported in python 3.master
parent
7c320a1e98
commit
af3d885f8e
@ -1,4 +1,4 @@ |
|||||||
# -*- coding: utf-8 -*- |
# -*- coding: utf-8 -*- |
||||||
'''The public module, including the homepage and user auth.''' |
'''The public module, including the homepage and user auth.''' |
||||||
|
|
||||||
import views |
from . import views |
||||||
|
@ -1,3 +1,3 @@ |
|||||||
'''The user module.''' |
'''The user module.''' |
||||||
|
|
||||||
import views |
from . import views |
||||||
|
Loading…
Reference in new issue