diff --git a/virtinst/devicedisk.py b/virtinst/devicedisk.py index 6e7c6c845..9ebcc1176 100644 --- a/virtinst/devicedisk.py +++ b/virtinst/devicedisk.py @@ -484,7 +484,7 @@ class VirtualDisk(VirtualDevice): # This case is here for 'xvda' tgt = tgt[1:] for i, c in enumerate(reversed(tgt[2:])): - num += (ord(c) - ord('a') + 1) * (26 ** i) + num += (ord(c) - ord('a')) * (26 ** i) return num