From 4a35faa5b98b94de4f495e558c0f0037d84c9a5e Mon Sep 17 00:00:00 2001 From: Nikos Skalkotos Date: Fri, 4 Jan 2013 19:26:20 +0200 Subject: [PATCH] Fix minor typos --- image_creator/bundle_volume.py | 2 +- image_creator/os_type/hurd.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 : -- 1.7.10.4