Fix Bigfile tell
This commit is contained in:
parent
879eb6295d
commit
5854beebc6
1 changed files with 1 additions and 1 deletions
|
@ -530,7 +530,7 @@ class BigFile(object):
|
||||||
return self.f.seek(pos, whence)
|
return self.f.seek(pos, whence)
|
||||||
|
|
||||||
def tell(self):
|
def tell(self):
|
||||||
self.f.tell()
|
return self.f.tell()
|
||||||
|
|
||||||
def close(self):
|
def close(self):
|
||||||
self.f.close()
|
self.f.close()
|
||||||
|
|
Loading…
Reference in a new issue