summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog6
-rwxr-xr-xec2-run-user-data.py2
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 736e0b82..b45b28c5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ec2-init (0.3.3ubuntu12) jaunty; urgency=low
+
+ * ec2-run-user-data.py: Fix error.
+
+ -- Chuck Short <zulcss@ubuntu.com> Tue, 07 Apr 2009 08:14:07 -0400
+
ec2-init (0.3.3ubuntu11) jaunty; urgency=low
* debian/control:
diff --git a/ec2-run-user-data.py b/ec2-run-user-data.py
index ef3b86b1..513c64ff 100755
--- a/ec2-run-user-data.py
+++ b/ec2-run-user-data.py
@@ -35,7 +35,7 @@ def checkServer():
address = '169.254.169.254'
port = 80
s.connect((address,port))
- except socket.error, 0:
+ except socket.error, e:
print "!!!! Unable to connect to %s" % address
sys.exit(0)