- Notifications
You must be signed in to change notification settings - Fork675
Closed
Description
The documentation at
https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html
give example code:
# List owned projectsprojects = gl.projects.owned()but using that construct produces an AttributeError.
import gitlabtoken = os.environ['TOKEN']gl = gitlab.Gitlab('http://gitlab.com', private_token=token) # This works but is not documented...projects = gl.projects.list(owned=True) # Documentation says to use this but it fails with # AttributeError: 'ProjectManager' object has no attribute 'owned' projects = gl.projects.owned()- python-gitlab version: 1.6.0
- API version you are using (v3/v4): v4
- Gitlab server version (or gitlab.com): gitlab.com
Metadata
Metadata
Assignees
Labels
No labels