We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thank you for this excellent sample FS using python-fuse! It's really helped me a lot as an example FUSE filesystem.
I think there's a small error (at least pylint thinks so):
def read(self, offset, length): stat.st_atime = time.now()
should be
def read(self, offset, length): stat.st_atime = time.time()
since time doesn't have now() and also you also use time.time() in another part of the code:
time
now()
time.time()
def now(self): self.atime = time.time() # time of last acces
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thank you for this excellent sample FS using python-fuse! It's really helped me a lot as an example FUSE filesystem.
I think there's a small error (at least pylint thinks so):
should be
since
time
doesn't havenow()
and also you also usetime.time()
in another part of the code:The text was updated successfully, but these errors were encountered: