diff options
author | hut <hut@lavabit.com> | 2009-11-24 00:41:16 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2009-11-24 00:41:16 +0100 |
commit | fae694a03ebb52888a747010fcb92fa43b33b4a8 (patch) | |
tree | ccd0d4e8d6a759eb8086d6a7da80316787b868ea /code/file.py | |
parent | 6ca37350f8e6bffe78520fddfc29ca53fa562e87 (diff) | |
download | ranger-fae694a03ebb52888a747010fcb92fa43b33b4a8.tar.gz |
better implementation of directories/files
Diffstat (limited to 'code/file.py')
-rw-r--r-- | code/file.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/code/file.py b/code/file.py new file mode 100644 index 00000000..291e53b2 --- /dev/null +++ b/code/file.py @@ -0,0 +1,6 @@ +import fsobject +class File(fsobject.FSObject): + pass +# def __init__(self, path): +# fsobject.FSObject.__init__(self, path) + |