diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2017-11-03 15:27:13 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2017-11-03 15:27:13 +0100 |
commit | 9eff543a42014ba30cf8af099534d507f7acebd4 (patch) | |
tree | acd65f212e9b5062cc17106ec056f76f8d672d79 | |
parent | fa897468cf565fb8546b47637cd9703981aedbc0 (diff) | |
download | gitlab-9eff543a42014ba30cf8af099534d507f7acebd4.tar.gz |
improve comment in release notes
-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() |