str(osobj) now prints the shortid, this helps debugging Signed-off-by: Cole Robinson <crobinso@xxxxxxxxxx> --- tests/osinfo.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/osinfo.py b/tests/osinfo.py index 0c58f0a..454170d 100644 --- a/tests/osinfo.py +++ b/tests/osinfo.py @@ -27,6 +27,9 @@ class Os(): self._root = root self._cache = {} + def __repr__(self): + return "<%s shortid=%s>" % (self.__class__.__name__, self.shortid) + def _get_id(self): return self._root.get('id') internal_id = _cache_property(_get_id) -- 2.21.0 _______________________________________________ Libosinfo mailing list Libosinfo@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/libosinfo