Correct dib_path typo

There's no dib_path, it should be dib_cmd

Change-Id: I0db2841118c95a96d529d7cc6eaa5e22b67794fb
This commit is contained in:
Ian Wienand 2020-03-17 17:33:26 +11:00 committed by Dr. Jens Harbott
parent 9ffe97403d
commit 107383df17

View File

@ -174,7 +174,7 @@ class DiskImage(ConfigValue):
def __init__(self):
self.name = None
self.elements = None
self.dib_path = None
self.dib_cmd = None
self.release = None
self.rebuild_age = None
self.env_vars = None
@ -188,7 +188,7 @@ class DiskImage(ConfigValue):
if isinstance(other, DiskImage):
return (other.name == self.name and
other.elements == self.elements and
other.dib_path == self.dib_path and
other.dib_cmd == self.dib_cmd and
other.release == self.release and
other.rebuild_age == self.rebuild_age and
other.env_vars == self.env_vars and