summary refs log tree commit diff stats
path: root/ranger/fsobject/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'ranger/fsobject/__init__.py')
-rw-r--r--ranger/fsobject/__init__.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/ranger/fsobject/__init__.py b/ranger/fsobject/__init__.py
new file mode 100644
index 00000000..2d6da282
--- /dev/null
+++ b/ranger/fsobject/__init__.py
@@ -0,0 +1,9 @@
+T_FILE = 'file'
+T_DIRECTORY = 'directory'
+T_UNKNOWN = 'unknown'
+T_NONEXISTANT = 'nonexistant'
+
+BAD_INFO = None
+
+class NotLoadedYet(Exception):
+	pass