orchestrator: Compatibility with Python 2.6
This is why we can't have nice things. Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
parent
86314fdc83
commit
7320bf4943
@ -106,7 +106,7 @@ class ComposePart(object):
|
||||
self.status = Status.READY
|
||||
|
||||
def setup_start(self, global_config, parts):
|
||||
substitutions = {name: p.path for name, p in parts.items() if p.is_finished()}
|
||||
substitutions = dict((name, p.path) for name, p in parts.items() if p.is_finished())
|
||||
substitutions["configdir"] = global_config.config_dir
|
||||
|
||||
config = kobo.conf.PyConfigParser()
|
||||
|
Loading…
Reference in New Issue
Block a user