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/creator.py | |
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/creator.py')
-rw-r--r-- | scripts/lib/wic/creator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/wic/creator.py b/scripts/lib/wic/creator.py index d0158fb62f..d4972e889b 100644 --- a/scripts/lib/wic/creator.py +++ b/scripts/lib/wic/creator.py @@ -24,7 +24,7 @@ from wic.conf import configmgr from wic.plugin import pluginmgr -class Creator(object): +class Creator(): """${name}: create an image Usage: |