From 107383df173ec07092ae4e996c2866129a0c71d0 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Tue, 17 Mar 2020 17:33:26 +1100 Subject: [PATCH] Correct dib_path typo There's no dib_path, it should be dib_cmd Change-Id: I0db2841118c95a96d529d7cc6eaa5e22b67794fb --- nodepool/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodepool/config.py b/nodepool/config.py index 5aa9b9603..74fc2045f 100644 --- a/nodepool/config.py +++ b/nodepool/config.py @@ -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