We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c56b453 commit bfb3e29Copy full SHA for bfb3e29
gitlab_submodule/gitlab_submodule.py
@@ -2,6 +2,7 @@
2
3
from gitlab import Gitlab
4
from gitlab.v4.objects import Project, ProjectManager
5
+from gitlab.exceptions import GitlabHttpError
6
7
from gitlab_submodule.objects import Submodule, Subproject
8
from gitlab_submodule.read_gitmodules import \
@@ -60,7 +61,7 @@ def iterate_subprojects(
60
61
)
62
if not (only_gitlab_subprojects and not subproject.project):
63
yield subproject
- except FileNotFoundError:
64
+ except FileNotFoundError, GitlabHttpError:
65
pass
66
67
0 commit comments