Fix Bigfile tell

This commit is contained in:
shortcutme 2018-08-16 16:20:21 +02:00
parent 879eb6295d
commit 5854beebc6
No known key found for this signature in database
GPG key ID: 5B63BAE6CB9613AE

View file

@ -530,7 +530,7 @@ class BigFile(object):
return self.f.seek(pos, whence)
def tell(self):
self.f.tell()
return self.f.tell()
def close(self):
self.f.close()