Skip to content

Commit 0fa0ea8

Browse files
committed
Merge pull request django-webpack#6 from destos/master
Fix setup to include contrib module
2 parents d16415c + 9224ed9 commit 0fa0ea8

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
@@ -4,7 +4,7 @@
44

55
setup(
66
name = 'django-webpack-loader',
7-
packages = ['webpack_loader', 'webpack_loader/templatetags'], # this must be the same as the name above
7+
packages = ['webpack_loader', 'webpack_loader/templatetags', 'webpack_loader/contrib'],
88
version = version,
99
description = 'Load your webpack bundles and chunks in django',
1010
author = 'Owais Lone',

webpack_loader/contrib/jinja2ext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import jinja2
1+
import jinja2.ext
22

33
from ..templatetags.webpack_loader import render_bundle
44

0 commit comments

Comments
 (0)