diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-05-04 16:06:17 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-14 07:26:42 +0100 |
commit | a146b03ee7d0aa5bc1722da5977a5952782b69bf (patch) | |
tree | 78cbe2291a8d5d02c2a28a73ab9ecf902fbe97ec /scripts/lib/wic/imager | |
parent | 003df7dfb932c551953fbf1bd769b3c31bd16fb4 (diff) | |
download | openembedded-core-a146b03ee7d0aa5bc1722da5977a5952782b69bf.tar.gz openembedded-core-a146b03ee7d0aa5bc1722da5977a5952782b69bf.tar.bz2 openembedded-core-a146b03ee7d0aa5bc1722da5977a5952782b69bf.zip |
wic: don't inherit classes from object
All classes in Python3 are new style classes and don't need
to be inherited from object. Wic code works fine without
this inheritance even with Python2, so it's harmless to
remove it.
[YOCTO #9412]
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/wic/imager')
-rw-r--r-- | scripts/lib/wic/imager/baseimager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/wic/imager/baseimager.py b/scripts/lib/wic/imager/baseimager.py index 557f536677..463ae93136 100644 --- a/scripts/lib/wic/imager/baseimager.py +++ b/scripts/lib/wic/imager/baseimager.py @@ -25,7 +25,7 @@ from wic import msger from wic.utils.errors import CreatorError from wic.utils import runner -class BaseImageCreator(object): +class BaseImageCreator(): """Base class for image creation. BaseImageCreator is the simplest creator class available; it will |