[pkg-eucalyptus-commits] [SCM] managing cloud instances for Eucalyptus branch, master, updated. 3.0.0-alpha3-257-g1da8e3a

Garrett Holmstrom gholms at fedoraproject.org
Sun Jun 16 02:30:52 UTC 2013


The following commit has been merged in the master branch:
commit b033a5bf89cc9002aa98e9c32d9da2a27bbaa685
Author: Garrett Holmstrom <gholms at fedoraproject.org>
Date:   Sun Mar 31 17:56:33 2013 -0700

    Add missing imports

diff --git a/euca2ools/commands/elasticloadbalancing/attachloadbalancertosubnets.py b/euca2ools/commands/elasticloadbalancing/attachloadbalancertosubnets.py
index c46834c..efa8d57 100644
--- a/euca2ools/commands/elasticloadbalancing/attachloadbalancertosubnets.py
+++ b/euca2ools/commands/elasticloadbalancing/attachloadbalancertosubnets.py
@@ -31,9 +31,10 @@
 from euca2ools.commands.argtypes import delimited_list
 from euca2ools.commands.elasticloadbalancing import ELBRequest
 from requestbuilder import Arg
+from requestbuilder.mixins import TabifyingCommand
 
 
-class AttachLoadBalancerToSubnets(ELBRequest):
+class AttachLoadBalancerToSubnets(ELBRequest, TabifyingCommand):
     DESCRIPTION = '[VPC only] Add a load balancer to one or more subnets'
     ARGS = [Arg('LoadBalancerName', metavar='ELB',
                 help='name of the load balancer to modify (required)'),
diff --git a/euca2ools/commands/elasticloadbalancing/detachloadbalancerfromsubnets.py b/euca2ools/commands/elasticloadbalancing/detachloadbalancerfromsubnets.py
index abeead8..bfaf1b4 100644
--- a/euca2ools/commands/elasticloadbalancing/detachloadbalancerfromsubnets.py
+++ b/euca2ools/commands/elasticloadbalancing/detachloadbalancerfromsubnets.py
@@ -31,9 +31,10 @@
 from euca2ools.commands.argtypes import delimited_list
 from euca2ools.commands.elasticloadbalancing import ELBRequest
 from requestbuilder import Arg
+from requestbuilder.mixins import TabifyingCommand
 
 
-class DetachLoadBalancerFromSubnets(ELBRequest):
+class DetachLoadBalancerFromSubnets(ELBRequest, TabifyingCommand):
     DESCRIPTION = '[VPC only] Remove a load balancer from one or more subnets'
     ARGS = [Arg('LoadBalancerName', metavar='ELB',
                 help='name of the load balancer to modify (required)'),

-- 
managing cloud instances for Eucalyptus



More information about the pkg-eucalyptus-commits mailing list