Browse Source
Merge pull request #64 from satriani-vai/11.0
11.0 Fix ModuleNotFoundError
pull/72/head
Cybrosys Technologies
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
4 additions and
4 deletions
-
access_restriction_by_ip/__init__.py
-
access_restriction_by_ip/controllers/__init__.py
-
access_restriction_by_ip/models/__init__.py
|
|
@ -20,7 +20,7 @@ |
|
|
|
# If not, see <http://www.gnu.org/licenses/>. |
|
|
|
# |
|
|
|
############################################################################## |
|
|
|
import controllers |
|
|
|
import models |
|
|
|
from . import controllers |
|
|
|
from . import models |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -20,5 +20,5 @@ |
|
|
|
# If not, see <http://www.gnu.org/licenses/>. |
|
|
|
# |
|
|
|
############################################################################## |
|
|
|
import main |
|
|
|
from . import main |
|
|
|
|
|
|
|
|
|
@ -20,6 +20,6 @@ |
|
|
|
# If not, see <http://www.gnu.org/licenses/>. |
|
|
|
# |
|
|
|
############################################################################## |
|
|
|
import allowed_ips |
|
|
|
from . import allowed_ips |
|
|
|
|
|
|
|
|
|
|
|