move newline to before indent

This commit is contained in:
InspectorCaracal 2022-05-04 10:36:53 -06:00 committed by GitHub
parent b3b87a5a1c
commit dd771fddd0

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)
)