Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bdragon300 committed Oct 19, 2024
1 parent da85a95 commit a7a537b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyzkaccess/_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ def setup(interactive: bool, path: Optional[str]) -> None:
)
sys.stdout.write("[win32] ")

with step("Platform"):
with step("Python version"):
if sys.maxsize.bit_length() > 32:
raise StepFailedError(
f"Python version must be 32-bit, but it is {sys.maxsize.bit_length() + 1} bit\n"
f"Python version must be 32-bit, but {sys.maxsize.bit_length() + 1} bit version installed\n"
f"32-bit Python is available to download at https://www.python.org/downloads/windows/\n"
f"See the docs https://bdragon300.github.io/pyzkaccess/#installing for more information\n"
)
Expand Down

0 comments on commit a7a537b

Please sign in to comment.