[gnome-builder] jedi: ignore non-gir files
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-builder] jedi: ignore non-gir files
- Date: Wed, 19 Jul 2017 11:11:59 +0000 (UTC)
commit 1d7c6fa60faf9e81f2fa0f93898f8e1cc68da6d4
Author: Christian Hergert <chergert redhat com>
Date: Thu Jul 6 14:32:52 2017 -0700
jedi: ignore non-gir files
The rnc file is now shipped here, so ignore that when going
through the directory contents.
plugins/jedi/jedi_plugin.py | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/plugins/jedi/jedi_plugin.py b/plugins/jedi/jedi_plugin.py
index d257680..25ade14 100644
--- a/plugins/jedi/jedi_plugin.py
+++ b/plugins/jedi/jedi_plugin.py
@@ -280,6 +280,8 @@ class DocumentationDB(object):
# I would use scandir for better performance, but it requires newer Python
for gir_path in GIR_PATH_LIST:
for gir_file in os.listdir(gir_path):
+ if not gir_file.endswith('.gir'):
+ continue
if gir_file in processed_gir_files:
continue
processed_gir_files[gir_file] = None
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]