Skip to content

Commit

Permalink
Fix code
Browse files Browse the repository at this point in the history
  • Loading branch information
itziakos committed Aug 23, 2024
1 parent 1ae4a08 commit 30e38f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion okonomiyaki/platforms/_pep425_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def get_platform():
import distutils.util
except ImportError:
import sysconfig
result = sysconfig.get_platform().string.replace(".", "_").replace("-", "_")
result = sysconfig.get_platform().replace(".", "_").replace("-", "_")
else:
result = distutils.util.get_platform().replace('.', '_').replace('-', '_')
if _is_running_32bit():
Expand Down

0 comments on commit 30e38f9

Please sign in to comment.