##// END OF EJS Templates
fix bogus close spotted by pychecker (no close() in global scope)
Benoit Boissinot -
r4961:3fdd09ad default
parent child Browse files
Show More
@@ -42,7 +42,7 b' class appender:'
42 def flush(self):
42 def flush(self):
43 pass
43 pass
44 def close(self):
44 def close(self):
45 close(self.fp)
45 self.fp.close()
46
46
47 def seek(self, offset, whence=0):
47 def seek(self, offset, whence=0):
48 '''virtual file offset spans real file and data'''
48 '''virtual file offset spans real file and data'''
General Comments 0
You need to be logged in to leave comments. Login now