fix bogus close spotted by pychecker (no close() in global scope)

This commit is contained in:
Benoit Boissinot 2007-07-20 09:44:50 +02:00
parent afb05aff16
commit 8c722d66b2

View File

@ -42,7 +42,7 @@ class appender:
def flush(self):
pass
def close(self):
close(self.fp)
self.fp.close()
def seek(self, offset, whence=0):
'''virtual file offset spans real file and data'''