From 4b5bea6a3275a2698df2310d2441ff6272ecb460 Mon Sep 17 00:00:00 2001 From: Lester Wade Date: Wed, 24 Apr 2013 09:45:01 -0700 Subject: [PATCH] Corrected instance password data check. Previously broken after adding region support. --- ec2_vol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ec2_vol b/ec2_vol index bf6435fd078..2899a47d590 100644 --- a/ec2_vol +++ b/ec2_vol @@ -176,7 +176,7 @@ def main(): if device_name is None and instance: try: - if inst.get_password_data == '': + if not ec2.get_password_data(inst.id): device_name = '/dev/sdf' attach = volume.attach(inst.id, device_name) while volume.attachment_state() != 'attached':