Skip to content

Commit

Permalink
fix typo in the architecture name for 32 bit platform : '_i686' -> 'i…
Browse files Browse the repository at this point in the history
…686'
  • Loading branch information
anlambert committed Apr 14, 2016
1 parent 3e95494 commit 36cf8ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auditwheel/policy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def get_arch_name():
if _platform_module.machine() in non_x86_linux_machines:
return _platform_module.machine()
else:
return {64: 'x86_64', 32: '_i686'}[bits]
return {64: 'x86_64', 32: 'i686'}[bits]

_ARCH_NAME = get_arch_name()

Expand Down

0 comments on commit 36cf8ea

Please sign in to comment.