Merge pull request #2735 from InspectorCaracal/fix_nattr_indent

Fix NAttr indents on examine
This commit is contained in:
Griatch 2022-05-27 10:45:48 +02:00 committed by GitHub
commit abe350cfc2

View file

@ -2732,7 +2732,7 @@ class CmdExamine(ObjManipCommand):
return
if ndb_attr and ndb_attr[0]:
return "\n " + " \n".join(
return "\n " + "\n ".join(
sorted(self.format_single_attribute(attr) for attr in ndb_attr)
)