Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name = 'django-webpack-loader',
packages = ['webpack_loader', 'webpack_loader/templatetags'], # this must be the same as the name above
packages = ['webpack_loader', 'webpack_loader/templatetags', 'webpack_loader/contrib'],
version = version,
description = 'Load your webpack bundles and chunks in django',
author = 'Owais Lone',
Expand Down
2 changes: 1 addition & 1 deletion webpack_loader/contrib/jinja2ext.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import jinja2
import jinja2.ext

from ..templatetags.webpack_loader import render_bundle

Expand Down