From: Nikos Skalkotos Date: Fri, 4 Jan 2013 17:26:20 +0000 (+0200) Subject: Fix minor typos X-Git-Tag: v0.2~11 X-Git-Url: https://code.grnet.gr/git/snf-image-creator/commitdiff_plain/4a35faa5b98b94de4f495e558c0f0037d84c9a5e Fix minor typos --- diff --git a/image_creator/bundle_volume.py b/image_creator/bundle_volume.py index 53c62f6..450d50d 100644 --- a/image_creator/bundle_volume.py +++ b/image_creator/bundle_volume.py @@ -211,7 +211,7 @@ class BundleVolume(object): # Add 10% just to be on the safe side part_end = last.start + (new_size * 11) // 10 - # Alighn to 2048 + # Align to 2048 part_end = ((part_end + 2047) // 2048) * 2048 image_disk.setPartitionGeometry( diff --git a/image_creator/os_type/hurd.py b/image_creator/os_type/hurd.py index 34a605d..98c65e5 100644 --- a/image_creator/os_type/hurd.py +++ b/image_creator/os_type/hurd.py @@ -34,7 +34,7 @@ from image_creator.os_type.unix import Unix, sysprep -class Hard(Unix): +class Hurd(Unix): pass # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :