X Tutup
Skip to content

Commit da7c8db

Browse files
committed
Fixes to pass CI
1 parent 43b4539 commit da7c8db

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

gitlab/v4/objects.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1654,9 +1654,11 @@ class ProjectForkManager(CreateMixin, ListMixin, RESTManager):
16541654
'with_custom_attributes', 'with_issues_enabled',
16551655
'with_merge_requests_enabled')
16561656
_create_attrs = (tuple(), ('namespace', ))
1657-
1657+
16581658
def list(self, **kwargs):
1659-
return super().list(path=self._compute_path(path=(self._path + "s")), **kwargs)
1659+
computed_path = self._compute_path(path=(self._path + "s"))
1660+
return super(ProjectForkManager, self).list(path=computed_path, **kwargs)
1661+
16601662

16611663
class ProjectHook(SaveMixin, ObjectDeleteMixin, RESTObject):
16621664
_short_print_attr = 'url'

0 commit comments

Comments
 (0)
X Tutup