mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-02 17:29:22 +01:00
Fixed a typo in a variable name.
This commit is contained in:
parent
335fc3e170
commit
cb05dc8484
@ -256,7 +256,7 @@ class FlatfileMapping(MappingInterface):
|
|||||||
|
|
||||||
def vacuum(self):
|
def vacuum(self):
|
||||||
infd = file(self.filename)
|
infd = file(self.filename)
|
||||||
outfd = utils.file.AstomicFile(self.filename,makeBackupIfSmaller=False)
|
outfd = utils.file.AtomicFile(self.filename,makeBackupIfSmaller=False)
|
||||||
outfd.write(infd.readline()) # First line, nextId.
|
outfd.write(infd.readline()) # First line, nextId.
|
||||||
for line in infd:
|
for line in infd:
|
||||||
if not line.startswith('-'):
|
if not line.startswith('-'):
|
||||||
|
Loading…
Reference in New Issue
Block a user