about summary refs log tree commit diff stats
path: root/examples/plugin_linemode.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/plugin_linemode.py')
-rw-r--r--examples/plugin_linemode.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/plugin_linemode.py b/examples/plugin_linemode.py
index 851d6213..6f16743d 100644
--- a/examples/plugin_linemode.py
+++ b/examples/plugin_linemode.py
@@ -6,6 +6,7 @@
 # the default linemode.
 
 import codecs
+
 import ranger.api
 from ranger.core.linemode import LinemodeBase
 
@@ -16,3 +17,6 @@ class MyLinemode(LinemodeBase):
 
     def filetitle(self, file, metadata):
         return codecs.encode(file.relative_path, "rot_13")
+
+    def infostring(self, file, metadata):
+        raise NotImplementedError