Fixed a typo in a variable name.

This commit is contained in:
Jeremy Fincher 2005-02-01 10:13:23 +00:00
parent 335fc3e170
commit cb05dc8484
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ class FlatfileMapping(MappingInterface):
def vacuum(self):
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.
for line in infd:
if not line.startswith('-'):