Skip to content

Commit

Permalink
Fix python2.6 error
Browse files Browse the repository at this point in the history
  • Loading branch information
aouaki committed Aug 13, 2016
1 parent 5c1686c commit 5c29e70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/app/tests/test_webpack.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def test_missing_bundle(self):
try:
get_loader(DEFAULT_CONFIG).get_bundle(missing_bundle_name)
except WebpackBundleLookupError as e:
self.assertIn('Cannot resolve bundle {}'.format(missing_bundle_name), str(e))
self.assertIn('Cannot resolve bundle {0}'.format(missing_bundle_name), str(e))

def test_missing_stats_file(self):
stats_file = settings.WEBPACK_LOADER[DEFAULT_CONFIG]['STATS_FILE']
Expand Down

0 comments on commit 5c29e70

Please sign in to comment.