Merge pull request #388 from Lucretiel/patch-1
The createDefaultKnownNodes function now uses a with statement
This commit is contained in:
commit
269d034b47
|
@ -37,12 +37,10 @@ def createDefaultKnownNodes(appdata):
|
|||
#print stream1
|
||||
#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)
|
||||
|
||||
output.close()
|
||||
return allKnownNodes
|
||||
|
||||
def readDefaultKnownNodes(appdata):
|
||||
|
|
Loading…
Reference in New Issue
Block a user