Skip to content

Commit

Permalink
Fix mistake in setup
Browse files Browse the repository at this point in the history
  • Loading branch information
WarmCyan committed Mar 22, 2022
1 parent f789062 commit 55d62bb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@

def get_property(prop):
result = re.search(
r'{}\s*=\s*[\'"]([^\'"]*)[\'"]'.format(prop),
open("curifactory/__init__.py").read(),
r'{}\s*=\s*[\'"]([^\'"]*)[\'"]'.format(prop), open("tx2/__init__.py").read()
)
return result.group(1)

Expand Down

0 comments on commit 55d62bb

Please sign in to comment.