From: Zack Cerza Date: Tue, 3 Mar 2015 21:19:42 +0000 (-0700) Subject: Don't use yaml in FakeNamespace's repr() X-Git-Tag: 1.1.0~991^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1d585501f2ca9644e5e39c0998e25ecff799fb28;p=teuthology.git Don't use yaml in FakeNamespace's repr() Signed-off-by: Zack Cerza --- diff --git a/teuthology/config.py b/teuthology/config.py index aa86e7a13..bcc9a8da8 100644 --- a/teuthology/config.py +++ b/teuthology/config.py @@ -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'