Skip to content

Commit

Permalink
Fix VERSION in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
fjsj committed Dec 19, 2023
1 parent bf9e163 commit 595b110
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -16,7 +16,7 @@ def rel(*parts):
INIT_PY = handler.read()


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

setup(
name="django-webpack-loader",
Expand Down

0 comments on commit 595b110

Please sign in to comment.