Browse Source

minor fix

2.9.x
ThomasV 8 years ago
parent
commit
b2116d87ea
  1. 2
      lib/blockchain.py

2
lib/blockchain.py

@ -165,7 +165,7 @@ class Blockchain(util.PrintError):
def save(self):
# recursively save parents if they have not been saved
if self.parent and not self.parent.is_saved():
if self.parent and not self.parent.is_saved:
self.parent.save()
open(self.path(), 'w+').close()
for h in self.headers:

Loading…
Cancel
Save