Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit 19e4cd3

Browse files
committed
Fix default arch for 32-bit
1 parent 62770c5 commit 19e4cd3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

virtinst/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def get_default_arch():
124124
arch = os.uname()[4]
125125
if arch == "x86_64":
126126
return "x86_64"
127-
return "i386"
127+
return "i686"
128128

129129
# this function is directly from xend/server/netif.py and is thus
130130
# available under the LGPL,

0 commit comments

Comments
 (0)