Use explicit relative import instead of implicit.

Implicit relative imports are discouraged
(http://legacy.python.org/dev/peps/pep-0008/#imports) and no longer supported
in python 3.
master
Tyler Stephens 10 years ago
parent 7c320a1e98
commit af3d885f8e
  1. 2
      {{cookiecutter.app_name}}/{{cookiecutter.app_name}}/public/__init__.py
  2. 2
      {{cookiecutter.app_name}}/{{cookiecutter.app_name}}/user/__init__.py

@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
'''The public module, including the homepage and user auth.'''
import views
from . import views

@ -1,3 +1,3 @@
'''The user module.'''
import views
from . import views

Loading…
Cancel
Save