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

Matt Spaulding mspaulding06 at gmail.com
Sun Jun 16 02:31:13 UTC 2013


The following commit has been merged in the master branch:
commit 9faadc3f499574a14d7335e0ac6e6dd05ce7e124
Author: Matt Spaulding <mspaulding06 at gmail.com>
Date:   Tue Apr 30 12:35:27 2013 -0700

    Fix tag argument splitting for AS groups

diff --git a/euca2ools/commands/autoscaling/argtypes.py b/euca2ools/commands/autoscaling/argtypes.py
index 84b30ba..b438ce2 100644
--- a/euca2ools/commands/autoscaling/argtypes.py
+++ b/euca2ools/commands/autoscaling/argtypes.py
@@ -31,7 +31,7 @@
 
 def autoscaling_tag_def(tag_str):
     tag_dict = {}
-    pieces = ','.split(tag_str)
+    pieces = tag_str.split(',')
     for piece in pieces:
         piece = piece.strip()
         if '=' not in piece:

-- 
managing cloud instances for Eucalyptus



More information about the pkg-eucalyptus-commits mailing list