diff --git a/octosuite/octosuite.py b/octosuite/octosuite.py index 5641888..c758fb0 100644 --- a/octosuite/octosuite.py +++ b/octosuite/octosuite.py @@ -545,7 +545,7 @@ class Octosuite: if response.status_code == 404: xprint(f"{NEGATIVE} {org_not_found.format(organization)}") elif response.status_code == 200: - org_profile_tree = Tree("\n{response.json()['name']}") + org_profile_tree = Tree(f"\n{response.json()['name']}") for attr in self.org_attrs: org_profile_tree.add(f"{self.org_attr_dict[attr]}: {response.json()[attr]}") xprint(org_profile_tree)