flake8: apply E70x rule
This commit is contained in:
parent
6dd77e0fa4
commit
fa69c4904e
6 changed files with 41 additions and 21 deletions
|
|
@ -3164,17 +3164,23 @@ class LiveCDTask(ImageTask):
|
|||
|
||||
# image metadata
|
||||
id = iso.get_application_id()
|
||||
if id is not None: fd.write("Application ID: %s\n" % id)
|
||||
if id is not None:
|
||||
fd.write("Application ID: %s\n" % id)
|
||||
id = iso.get_preparer_id()
|
||||
if id is not None: fd.write("Preparer ID: %s\n" % id)
|
||||
if id is not None:
|
||||
fd.write("Preparer ID: %s\n" % id)
|
||||
id = iso.get_publisher_id()
|
||||
if id is not None: fd.write("Publisher ID: %s\n" % id)
|
||||
if id is not None:
|
||||
fd.write("Publisher ID: %s\n" % id)
|
||||
id = iso.get_system_id()
|
||||
if id is not None: fd.write("System ID: %s\n" % id)
|
||||
if id is not None:
|
||||
fd.write("System ID: %s\n" % id)
|
||||
id = iso.get_volume_id()
|
||||
if id is not None: fd.write("Volume ID: %s\n" % id)
|
||||
if id is not None:
|
||||
fd.write("Volume ID: %s\n" % id)
|
||||
id = iso.get_volumeset_id()
|
||||
if id is not None: fd.write("Volumeset ID: %s\n" % id)
|
||||
if id is not None:
|
||||
fd.write("Volumeset ID: %s\n" % id)
|
||||
|
||||
fd.write('\nSize(bytes) File Name\n')
|
||||
manifest = self.listISODir(iso, '/')
|
||||
|
|
@ -3344,17 +3350,23 @@ class LiveMediaTask(ImageTask):
|
|||
|
||||
# image metadata
|
||||
id = iso.get_application_id()
|
||||
if id is not None: fd.write("Application ID: %s\n" % id)
|
||||
if id is not None:
|
||||
fd.write("Application ID: %s\n" % id)
|
||||
id = iso.get_preparer_id()
|
||||
if id is not None: fd.write("Preparer ID: %s\n" % id)
|
||||
if id is not None:
|
||||
fd.write("Preparer ID: %s\n" % id)
|
||||
id = iso.get_publisher_id()
|
||||
if id is not None: fd.write("Publisher ID: %s\n" % id)
|
||||
if id is not None:
|
||||
fd.write("Publisher ID: %s\n" % id)
|
||||
id = iso.get_system_id()
|
||||
if id is not None: fd.write("System ID: %s\n" % id)
|
||||
if id is not None:
|
||||
fd.write("System ID: %s\n" % id)
|
||||
id = iso.get_volume_id()
|
||||
if id is not None: fd.write("Volume ID: %s\n" % id)
|
||||
if id is not None:
|
||||
fd.write("Volume ID: %s\n" % id)
|
||||
id = iso.get_volumeset_id()
|
||||
if id is not None: fd.write("Volumeset ID: %s\n" % id)
|
||||
if id is not None:
|
||||
fd.write("Volumeset ID: %s\n" % id)
|
||||
|
||||
fd.write('\nSize(bytes) File Name\n')
|
||||
manifest = self.listISODir(iso, '/')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue