diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2017-10-08 10:05:16 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2017-10-08 10:05:16 +0200 |
commit | 5945537c157818483a4a14138619fa6b9341e6b3 (patch) | |
tree | 2b1759f7c7e116abbf73795eecd20d5656f777be /docs/gl_objects/projects.py | |
parent | 316754dd8290ee80c8c197eb1eca559fce97792e (diff) | |
download | gitlab-5945537c157818483a4a14138619fa6b9341e6b3.tar.gz |
[docs] improve the labels usage documentation
Closes #329
Diffstat (limited to 'docs/gl_objects/projects.py')
-rw-r--r-- | docs/gl_objects/projects.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/gl_objects/projects.py b/docs/gl_objects/projects.py index 849d6f4..6ef6069 100644 --- a/docs/gl_objects/projects.py +++ b/docs/gl_objects/projects.py @@ -384,7 +384,7 @@ issue = project.issues.get(issue_id) issue.notes.create({ "body": "See the attached file: {}".format(uploaded_file["markdown"]) }) -# project file upload markdown +# end project file upload markdown # project file upload markdown custom uploaded_file = project.upload("filename.txt", filedata="data") @@ -392,4 +392,4 @@ issue = project.issues.get(issue_id) issue.notes.create({ "body": "See the [attached file]({})".format(uploaded_file["url"]) }) -# project file upload markdown +# end project file upload markdown custom |