File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ def install_custom_uefi_certs(self, auths):
264
264
assert 'db' in auths_dict
265
265
266
266
logging .info ('Installing auths to pool: %s' % list (auths_dict .keys ()))
267
- for key in auths_dict . keys () :
267
+ for key in auths_dict :
268
268
value = host .ssh ([f'md5sum { auths_dict [key ]} | cut -d " " -f 1' ])
269
269
logging .debug ('Key: %s, value: %s' % (key , value ))
270
270
params = [auths_dict ['PK' ], auths_dict ['KEK' ], auths_dict ['db' ]]
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ def skip_package_source(version, package_source):
29
29
if package_source == "net" :
30
30
# Net install is not valid if there is no netinstall URL
31
31
# FIXME: ISO includes a default URL so we should be able to omit net-url
32
- if 'net-url' not in ISO_IMAGES [version ]. keys () :
32
+ if 'net-url' not in ISO_IMAGES [version ]:
33
33
return True , "net-url required for netinstall was not found for {}" .format (version )
34
34
35
35
return False , "do not skip"
You can’t perform that action at this time.
0 commit comments