Skip to content

Commit 6fd103d

Browse files
OrangeDogowais
authored andcommitted
Fix example IGNORE patterns (django-webpack#179)
Needs to be a raw string otherwise it contains invalid escapes.
1 parent 9d9a97c commit 6fd103d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ WEBPACK_LOADER = {
9090
'STATS_FILE': os.path.join(BASE_DIR, 'webpack-stats.json'),
9191
'POLL_INTERVAL': 0.1,
9292
'TIMEOUT': None,
93-
'IGNORE': ['.+\.hot-update.js', '.+\.map']
93+
'IGNORE': [r'.+\.hot-update.js', r'.+\.map']
9494
}
9595
}
9696
```

0 commit comments

Comments
 (0)