Commit d1327a4b by willmcgugan

Small fix

parent ff191617
#!/usr/bin/env python
import os
import os.path
import fnmatch
......@@ -260,8 +262,8 @@ class FS(object):
def getsize(self, path):
return self.info(path)['size']
return self.getinfo(path)['size']
class SubFS(FS):
......@@ -445,7 +447,7 @@ if __name__ == "__main__":
for filename in osfs.walk_files("/prettycharts", "*.pov"):
print filename
print osfs.info(filename)
print osfs.getinfo(filename)
import browsewin
browsewin.browse(osfs)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment