try some more.
This commit is contained in:
parent
471510f08e
commit
0c488745cb
1 changed files with 3 additions and 1 deletions
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue