]> arthur.barton.de Git - bup.git/blobdiff - lib/bup/cmd/fuse.py
Remove Client __del__ in favor of context management
[bup.git] / lib / bup / cmd / fuse.py
index 6307119704882ffed3905759c0b5a28836a75d59..385bea9f3a8d0f2d8865db310afce464f97a8f22 100755 (executable)
@@ -43,7 +43,7 @@ class BupFs(fuse.Fuse):
         self.repo = repo
         self.verbose = verbose
         self.fake_metadata = fake_metadata
-    
+
     def getattr(self, path):
         path = argv_bytes(path)
         if self.verbose > 0:
@@ -106,6 +106,7 @@ class BupFs(fuse.Fuse):
         # Return None since read doesn't need the file atm...
         # If we *do* return the file, it'll show up as the last argument
         #return vfs.fopen(repo, item)
+        return None
 
     def read(self, path, size, offset):
         path = argv_bytes(path)