Skip to content

Commit

Permalink
fix version check
Browse files Browse the repository at this point in the history
  • Loading branch information
fzumstein committed Apr 25, 2023
1 parent 352a444 commit e554b45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xlwingsjs/check_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def main():
if f'version = "{version}"' not in xlwingsjs.read_text():
raise Exception("Didn't find expected version in xlwings.js!")

if f'version="{version}"' not in xlwingsminjs.read_text():
if f'"{version}"' not in xlwingsminjs.read_text():
raise Exception("Didn't find expected version in xlwings.min.js!")


Expand Down

0 comments on commit e554b45

Please sign in to comment.