From 9ddb45127b5eb46754a11bb6a2930fc1b97be473 Mon Sep 17 00:00:00 2001 From: Stefan Caraiman Date: Wed, 27 Jul 2016 13:12:19 +0300 Subject: [PATCH] Fix misspelled classname in posix Whenever the get_os_utils is called on a unix system, it will try to load the PosixUtils class, but the name of the class is misspelled as PoxixUtil, therefore not being able to find it. Change-Id: Ia9b67527b7af3282e3c4658fbfd22fae28b7e2e7 --- cloudbaseinit/osutils/posix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudbaseinit/osutils/posix.py b/cloudbaseinit/osutils/posix.py index 01e4281d..47f7d219 100644 --- a/cloudbaseinit/osutils/posix.py +++ b/cloudbaseinit/osutils/posix.py @@ -17,7 +17,7 @@ import os from cloudbaseinit.osutils import base -class PosixUtil(base.BaseOSUtils): +class PosixUtils(base.BaseOSUtils): def reboot(self): os.system('reboot')