From f4e756f0cb72c3c7384e76b25e234de651691793 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Wed, 24 Jul 2024 13:31:39 -0300 Subject: Fix: plugin: opener: searcher: file: .gitattributes --- packages/finder/plugin/searcher/file/name.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/finder/plugin/searcher/file/name.py b/packages/finder/plugin/searcher/file/name.py index 17c8e2b..6cfeb87 100644 --- a/packages/finder/plugin/searcher/file/name.py +++ b/packages/finder/plugin/searcher/file/name.py @@ -34,7 +34,7 @@ class FinderPluginFileNameSearcher(): async def finder(self): path = self.path ignore_folders = [ '.git', '__pycache__' ] - ignore_files = [ '.gitignore', '.gitatrributes', '.gitmodules' ] + ignore_files = [ '.gitignore', '.gitattributes', '.gitmodules' ] for parent, dirs, files in os.walk(self.path): # Ignore folders -- cgit v1.2.3