From 295e2caff01aad258879841ec46edff092c6b309 Mon Sep 17 00:00:00 2001 From: Leo Simons Date: Thu, 7 Aug 2014 14:52:37 +0200 Subject: [PATCH] Fix configure::waitForDevice when a device is missing. Was using non-existing 'ip' variable. --- systemvm/patches/debian/config/opt/cloud/bin/configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systemvm/patches/debian/config/opt/cloud/bin/configure.py b/systemvm/patches/debian/config/opt/cloud/bin/configure.py index 5cee321e8b4..3f6a87ef82c 100755 --- a/systemvm/patches/debian/config/opt/cloud/bin/configure.py +++ b/systemvm/patches/debian/config/opt/cloud/bin/configure.py @@ -340,7 +340,7 @@ class CsDevice: time.sleep(1) count += 1 self.buildlist(); - logging.error("Address %s on device %s cannot be configured - device was not found", ip.ip(), self.dev) + logging.error("Device %s cannot be configured - device was not found", self.dev) return False def list(self):