Skip to content

Commit 595b110

Browse files
committed
Fix VERSION in setup.py
1 parent bf9e163 commit 595b110

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def rel(*parts):
1616
INIT_PY = handler.read()
1717

1818

19-
VERSION = re.findall("__version__ = '([^']+)'", INIT_PY)[0]
19+
VERSION = re.findall(r"__version__ = \"([^\"]+)\"", INIT_PY)[0]
2020

2121
setup(
2222
name="django-webpack-loader",

0 commit comments

Comments
 (0)