From 993e32d9e00718bca829bb9e5c3ae7b0be6ca78b Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Mon, 11 Jun 2012 17:20:17 -0700 Subject: Pylint fixups. --- cloudinit/user_data/cloud_config.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/cloudinit/user_data/cloud_config.py b/cloudinit/user_data/cloud_config.py index 1c43f3a1..f0e88eeb 100644 --- a/cloudinit/user_data/cloud_config.py +++ b/cloudinit/user_data/cloud_config.py @@ -20,9 +20,6 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . - -import os - from cloudinit import log as logging from cloudinit import user_data as ud from cloudinit import util @@ -56,4 +53,4 @@ class CloudConfigPartHandler(ud.PartHandler): filename = util.clean_filename(filename) entry = "\n".join(["#%s" % (filename), str(payload)]) - self.config_buf.append(entry) + self.cloud_buf.append(entry) -- cgit v1.2.3