Skip to content
Snippets Groups Projects
Commit b80cbb09 authored by dx's avatar dx
Browse files

bl00mbox/patches: fix broken repr of patches

parent 66ff1002
No related branches found
No related tags found
No related merge requests found
Pipeline #6527 passed
......@@ -30,9 +30,9 @@ class _PatchItemList:
return iter(self._items)
def __repr__(self):
rets = ""
ret = ""
for x in self._items:
a = "\n" + repr(getattr(self, x)).split("]")
a = ("\n" + repr(getattr(self, x))).split("]")
a[0] += ": " + x
ret += "]".join(a)
return ret
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment