]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
openstack: explains args vs argv 592/head
authorLoic Dachary <ldachary@redhat.com>
Wed, 2 Sep 2015 22:05:35 +0000 (00:05 +0200)
committerLoic Dachary <ldachary@redhat.com>
Wed, 2 Sep 2015 22:05:35 +0000 (00:05 +0200)
Signed-off-by: Loic Dachary <loic@dachary.org>
teuthology/openstack/__init__.py

index a9a253f17f09b8b38ffd27536be4be64de1c9d92..71439e357e7936116af504bf805556e75d46d080 100644 (file)
@@ -259,6 +259,12 @@ class OpenStack(object):
 class TeuthologyOpenStack(OpenStack):
 
     def __init__(self, args, config, argv):
+        """
+        args is of type argparse.Namespace as returned
+        when parsing argv and config is the job 
+        configuration. The argv argument can be re-used
+        to build the arguments list of teuthology-suite.
+        """
         super(TeuthologyOpenStack, self).__init__()
         self.argv = argv
         self.args = args