Skip to content

Commit c3bf52b

Browse files
committed
Fixed import to make it work on python 3
1 parent bec01c3 commit c3bf52b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
setup(
33
name = 'django-webpack-loader',
44
packages = ['webpack_loader', 'webpack_loader/templatetags'], # this must be the same as the name above
5-
version = '0.0.4.5',
5+
version = '0.0.5',
66
description = 'Load your webpack bundles and chunks in django',
77
author = 'Owais Lone',
88
author_email = 'hello@owaislone.org',

webpack_loader/apps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ class WebpackLoaderConfig(AppConfig):
66
verbose_name = "Webpack Loader"
77

88
def ready(self):
9-
from .signals import *
9+
from . import signals

0 commit comments

Comments
 (0)