fix typo preventing building docker images
Related: https://pagure.io/koji/issue/3619
This commit is contained in:
parent
c667d5bfff
commit
49bbb0e55c
1 changed files with 6 additions and 6 deletions
|
|
@ -4073,13 +4073,13 @@ class BaseImageTask(OzImageTask):
|
|||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(BaseImageTask, self).__init__(*args, **kwargs)
|
||||
'''
|
||||
format: {
|
||||
'qemu': bool -supported format by qemu
|
||||
'fcall': function to handle creation of this format
|
||||
}
|
||||
'''
|
||||
self.supported_formats = {
|
||||
'''
|
||||
format: {
|
||||
'qemu': bool -supported format by qemu
|
||||
'fcall': function to handle creation of this format
|
||||
}
|
||||
'''
|
||||
'docker': {'qemu': False, 'fcall': self._buildDocker},
|
||||
'liveimg-squashfs': {'qemu': False, 'fcall': self._buildSquashfs},
|
||||
'qcow': {'qemu': True, 'fcall': self._buildConvert},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue