replacing fstat call with stat

This commit is contained in:
Michel Oosterhof 2015-04-10 07:33:18 +00:00
parent 347056a03d
commit 82a1f12937
1 changed files with 1 additions and 1 deletions

View File

@ -463,7 +463,7 @@ class KippoSFTPFile:
self.bytes_written += len(data)
def getAttrs(self):
s = self.server.fs.fstat(self.fd)
s = self.server.fs.stat(self.filename)
return self.server._getAttrs(s)
def setAttrs(self, attrs):