diff options
Diffstat (limited to 'gitlab/objects.py')
-rw-r--r-- | gitlab/objects.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/objects.py b/gitlab/objects.py index 0c3d30d..98c1a32 100644 --- a/gitlab/objects.py +++ b/gitlab/objects.py @@ -299,7 +299,7 @@ class GitlabObject(object): for k, v in data.items(): # If a k attribute already exists and is a Manager, do nothing (see - # https://github.com/gpocentek/python-gitlab/issues/209) + # https://github.com/python-gitlab/python-gitlab/issues/209) if isinstance(getattr(self, k, None), BaseManager): continue |