From 89005a04e72b553ea76b28d3694cc2a3c069feec Mon Sep 17 00:00:00 2001 From: Angus Salkeld Date: Thu, 14 Mar 2013 12:25:12 +1100 Subject: [PATCH] part-handler: add missing import errno is used in the excption but not imported. bug 1154887 Change-Id: I1c2961f08824d919ed2483a0a9cf54c50862f354 --- heat/cloudinit/part-handler.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/heat/cloudinit/part-handler.py b/heat/cloudinit/part-handler.py index 138d6d58..4b1c6b57 100644 --- a/heat/cloudinit/part-handler.py +++ b/heat/cloudinit/part-handler.py @@ -1,7 +1,8 @@ #part-handler -import os import datetime +import errno +import os def list_types(): -- 2.45.2