From 4f7b34d362fe6e68c1707311d20b446d5310a65e Mon Sep 17 00:00:00 2001
From: Nikos Skalkotos <skalkoto@grnet.gr>
Date: Wed, 24 Dec 2014 16:04:29 +0200
Subject: [PATCH] Fix minor typo: OSs -> OSes

---
 image_creator/os_type/unix.py             | 2 +-
 image_creator/os_type/unsupported.py      | 6 +++---
 image_creator/os_type/windows/__init__.py | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/image_creator/os_type/unix.py b/image_creator/os_type/unix.py
index 4a46599..4999f7d 100644
--- a/image_creator/os_type/unix.py
+++ b/image_creator/os_type/unix.py
@@ -15,7 +15,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-"""This module hosts OS-specific code common to all Unix-like OSs."""
+"""This module hosts OS-specific code common to all Unix-like OSes."""
 
 from image_creator.os_type import OSBase, sysprep, add_sysprep_param
 
diff --git a/image_creator/os_type/unsupported.py b/image_creator/os_type/unsupported.py
index 6b8d9cb..41ef24e 100644
--- a/image_creator/os_type/unsupported.py
+++ b/image_creator/os_type/unsupported.py
@@ -15,13 +15,13 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-"""This module hosts code to handle unknown OSs."""
+"""This module hosts code to handle unknown OSes."""
 
 from image_creator.os_type import OSBase
 
 
 class Unsupported(OSBase):
-    """OS class for unsupported OSs"""
+    """OS class for unsupported OSes"""
     def __init__(self, image, **kwargs):
         super(Unsupported, self).__init__(image, **kwargs)
 
@@ -31,7 +31,7 @@ class Unsupported(OSBase):
 
     def _do_mount(self, readonly):
         """Mount partitions in correct order"""
-        self._mount_error = "not supported on this media"
+        self._mount_error = "not supported for this media"
         return False
 
 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :
diff --git a/image_creator/os_type/windows/__init__.py b/image_creator/os_type/windows/__init__.py
index 388d88a..fccbd2d 100644
--- a/image_creator/os_type/windows/__init__.py
+++ b/image_creator/os_type/windows/__init__.py
@@ -16,7 +16,7 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 """This package hosts OS-specific code common for the various Microsoft
-Windows OSs."""
+Windows OSes."""
 
 from image_creator.os_type import OSBase, sysprep, add_sysprep_param
 from image_creator.util import FatalError
-- 
GitLab