Fix a few issues reported by codespell

There were a few minor typos across the codebase which codespell pointed
out.

Signed-off-by: Erik Skultety <eskultet@redhat.com>
This commit is contained in:
Erik Skultety
2019-03-18 13:04:53 -04:00
committed by Cole Robinson
parent 584ab2f05d
commit 67acebc2b3
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -415,7 +415,7 @@ class vmmCreatePool(vmmGObjectUI):
def _async_pool_create(self, asyncjob, build):
meter = asyncjob.get_meter()
logging.debug("Starting backround pool creation.")
logging.debug("Starting background pool creation.")
poolobj = self._pool.install(create=True, meter=meter, build=build)
poolobj.setAutostart(True)
logging.debug("Pool creation succeeded")
+1 -1
View File
@@ -271,7 +271,7 @@ class vmmCreateVolume(vmmGObjectUI):
self.vol.pool = newpool
meter = asyncjob.get_meter()
logging.debug("Starting backround vol creation.")
logging.debug("Starting background vol creation.")
self.vol.install(meter=meter)
logging.debug("vol creation complete.")
+1 -1
View File
@@ -1883,7 +1883,7 @@ class vmmDetails(vmmGObjectUI):
##################################################
def config_cancel(self, ignore=None):
# Remove current changes and deactive 'apply' button
# Remove current changes and deactivate 'apply' button
self.hw_selected()
def config_apply(self, ignore=None, row=None):
+1 -1
View File
@@ -558,7 +558,7 @@ class _OsVariant(object):
logging.debug("Install script found for profile '%s'", profile)
# Some OSes (as Windows) have more than one installer script,
# depending on the OS version and profile choosen, to be used to
# depending on the OS version and profile chosen, to be used to
# perform the unattended installation. Let's just deal with
# multiple installer scripts when its actually needed, though.
return installscripts[0]