try some more.

This commit is contained in:
Sarah 2021-10-17 03:40:43 +02:00
parent 471510f08e
commit 0c488745cb
No known key found for this signature in database
GPG key ID: 708F7ACE058F0186

View file

@ -26,6 +26,8 @@ class NarInfo(t.NamedTuple):
for sig in self.signatures: for sig in self.signatures:
lines.append(f"Sig: {sig}") lines.append(f"Sig: {sig}")
lines.append("\n")
return "\n".join(lines) return "\n".join(lines)
@classmethod @classmethod
@ -75,7 +77,7 @@ class CacheInfo(t.NamedTuple):
f"StoreDir: {self.storeDir}", f"StoreDir: {self.storeDir}",
f"WantMassQuery: {self.wantMassQuery}", f"WantMassQuery: {self.wantMassQuery}",
f"Priority: {self.priority}" f"Priority: {self.priority}"
)) )) + "\n"
class Store: class Store: