]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
Don't use yaml in FakeNamespace's repr() 449/head
authorZack Cerza <zack@redhat.com>
Tue, 3 Mar 2015 21:19:42 +0000 (14:19 -0700)
committerZack Cerza <zack@redhat.com>
Tue, 3 Mar 2015 21:19:42 +0000 (14:19 -0700)
Signed-off-by: Zack Cerza <zack@redhat.com>
teuthology/config.py

index aa86e7a13919b8d6d46b8aeb7e623828fc243e82..bcc9a8da8144bca62bdd064c4f983a318b9f0a52 100644 (file)
@@ -202,6 +202,9 @@ class FakeNamespace(YamlConfig):
             return self._defaults[name]
         raise AttributeError(name)
 
+    def __repr__(self):
+        return repr(self._conf)
+
 
 def _get_config_path():
     system_config_path = '/etc/teuthology.yaml'