Add the sysprep message printing in the decorator
[snf-image-creator] / image_creator / os_type / hurd.py
index bba3e65..2f3e82c 100644 (file)
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+#
 # Copyright 2012 GRNET S.A. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or
 # interpreted as representing official policies, either expressed
 # or implied, of GRNET S.A.
 
-from image_creator.os_type.unix import Unix, exclude_task
+"""This module hosts OS-specific code for GNU Hurd."""
+
+from image_creator.os_type.unix import Unix
 
 
-class Hard(Unix):
+class Hurd(Unix):
+    """OS class for GNU Hurd"""
     pass
 
 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :