summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2019-01-16 23:10:17 +0100
committerjvoisin2019-01-16 23:10:17 +0100
commit812bf2553bfe9b77e1d47af08269edb2d430e48f (patch)
treeca49bd7abd71c748573d4710e25b4fdd55c761d7
parent94cdca1ed25a59012d98d25505a801ebc4005c3f (diff)
Rename the internal class used by the nautilus extension
This should solve collisions with people like me that are copy/pasting the documentation, creating conflicts with other extensions that are doing the very same thing.
-rw-r--r--nautilus/mat2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nautilus/mat2.py b/nautilus/mat2.py
index 0688ef2..562f8a7 100644
--- a/nautilus/mat2.py
+++ b/nautilus/mat2.py
@@ -35,7 +35,7 @@ def _remove_metadata(fpath) -> Tuple[bool, Optional[str]]:
35 return False, mtype 35 return False, mtype
36 return parser.remove_all(), mtype 36 return parser.remove_all(), mtype
37 37
38class ColumnExtension(GObject.GObject, Nautilus.MenuProvider, Nautilus.LocationWidgetProvider): 38class Mat2Extension(GObject.GObject, Nautilus.MenuProvider, Nautilus.LocationWidgetProvider):
39 """ This class adds an item to the right-clic menu in Nautilus. """ 39 """ This class adds an item to the right-clic menu in Nautilus. """
40 40
41 def __init__(self): 41 def __init__(self):