=== modified file 'flickrfs.py' --- flickrfs.py 2008-03-26 21:09:37 +0000 +++ flickrfs.py 2008-03-26 22:19:07 +0000 @@ -209,6 +209,22 @@ background(timerThread, self.sets_thread, self.sync_sets_thread, sets_sync_int) #sync every 2 minutes + def getattr_compat_0_1(self, *a): + log.info("In compat") + s = os.stat_result(self.getattr(*a)) + stat = fuse.Stat() + stat.st_mode = s.st_mode + stat.st_ino = s.st_ino + stat.st_dev = s.st_dev + stat.st_nlink = s.st_nlink + stat.st_uid = s.st_uid + stat.st_gid = s.st_gid + stat.st_size = s.st_size + stat.st_atime = s.st_atime + stat.st_mtime = s.st_mtime + stat.st_ctime = s.st_ctime + + return stat def imageResize(self, bufData): # If no resizing information is present, then return the buffer directly.