Minor reordering to match param order
authorStephen Shirley <diamond@google.com>
Tue, 8 Feb 2011 16:42:18 +0000 (17:42 +0100)
committerIustin Pop <iustin@google.com>
Wed, 9 Feb 2011 08:56:12 +0000 (09:56 +0100)
Signed-off-by: Stephen Shirley <diamond@google.com>
Signed-off-by: Iustin Pop <iustin@google.com>
Reviewed-by: Iustin Pop <iustin@google.com>

tools/cluster-merge

index d2e62e4..85d3a1d 100755 (executable)
@@ -76,16 +76,16 @@ class MergerData(object):
 
     @param cluster: The name of the cluster
     @param key_path: Path to the ssh private key used for authentication
-    @param config_path: Path to the merging cluster config
     @param nodes: List of nodes in the merging cluster
     @param instances: List of instances running on merging cluster
+    @param config_path: Path to the merging cluster config
 
     """
     self.cluster = cluster
     self.key_path = key_path
-    self.config_path = config_path
-    self.instances = instances
     self.nodes = nodes
+    self.instances = instances
+    self.config_path = config_path
 
 
 class Merger(object):