diff options
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 |