The createDefaultKnownNodes function now uses a with statement
This commit is contained in:
parent
fed1f7a3cc
commit
854b739431
|
@ -37,12 +37,10 @@ def createDefaultKnownNodes(appdata):
|
||||||
#print stream1
|
#print stream1
|
||||||
#print allKnownNodes
|
#print allKnownNodes
|
||||||
|
|
||||||
output = open(appdata + 'knownnodes.dat', 'wb')
|
with open(appdata + 'knownnodes.dat', 'wb) as output:
|
||||||
|
# Pickle dictionary using protocol 0.
|
||||||
|
pickle.dump(allKnownNodes, output)
|
||||||
|
|
||||||
# Pickle dictionary using protocol 0.
|
|
||||||
pickle.dump(allKnownNodes, output)
|
|
||||||
|
|
||||||
output.close()
|
|
||||||
return allKnownNodes
|
return allKnownNodes
|
||||||
|
|
||||||
def readDefaultKnownNodes(appdata):
|
def readDefaultKnownNodes(appdata):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user