From cb05dc84842debf1fb8b9b4046d9f96162e8e934 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 1 Feb 2005 10:13:23 +0000 Subject: [PATCH] Fixed a typo in a variable name. --- src/dbi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dbi.py b/src/dbi.py index e39135114..dbb13b7da 100644 --- a/src/dbi.py +++ b/src/dbi.py @@ -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('-'):