Skip to content
This repository has been archived by the owner on Jan 8, 2023. It is now read-only.

Commit

Permalink
Update setup.py variable parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdan Kulynych committed Sep 23, 2018
1 parent 1e3dbd8 commit 0d8d16d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@


with open(os.path.join(here, 'mia/__init__.py')) as f:
matches = re.findall(r'(__.+__) = \'(.*)\'', f.read())
matches = re.findall(r'(__.+__) = \"(.*)\"', f.read())
for var_name, var_value in matches:
globals()[var_name] = var_value

Expand Down

0 comments on commit 0d8d16d

Please sign in to comment.