summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2010-02-12 12:27:46 -0500
committerScott Moser <smoser@ubuntu.com>2010-02-12 12:27:46 -0500
commit2fc34ffe31b0c899625106f73b7044e90280b80b (patch)
treea6f8f8e23097585295409433a5886e7fd245ea79
parentc2039ded38064cb8b17fc242791e7f16e7f68f4d (diff)
downloadvyos-cloud-init-2fc34ffe31b0c899625106f73b7044e90280b80b.tar.gz
vyos-cloud-init-2fc34ffe31b0c899625106f73b7044e90280b80b.zip
fix bug where caused apt update to fail
-rw-r--r--cloudinit/CloudConfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/CloudConfig.py b/cloudinit/CloudConfig.py
index 32e5c95b..f4a6ef37 100644
--- a/cloudinit/CloudConfig.py
+++ b/cloudinit/CloudConfig.py
@@ -368,7 +368,7 @@ def add_sources(srclist):
try: util.subp(["add-apt-repository",source])
except:
elst.append([source, "add-apt-repository failed"])
- continue
+ continue
if not ent.has_key('filename'):
ent['filename']='cloud_config_sources.list'