diff options
-rw-r--r-- | RELEASE_NOTES.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RELEASE_NOTES.rst b/RELEASE_NOTES.rst index 0c0098e..44705ee 100644 --- a/RELEASE_NOTES.rst +++ b/RELEASE_NOTES.rst @@ -18,7 +18,7 @@ Changes from 1.0.2 to 1.1 .. code-block:: python for gr_project in group.projects.list(): - # lazy object creation doesn't need an Gitlab API request + # lazy object creation avoids a Gitlab API request project = gl.projects.get(gr_project.id, lazy=True) project.default_branch = 'develop' project.save() |