diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2017-11-11 14:57:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-11 14:57:28 +0100 |
commit | ad35482bdeb587ec816cac4f2231b93fcdd0066a (patch) | |
tree | 90d76503ea8e2b0983bd6ccd090131852ff910e8 | |
parent | 29d8d72e4ef3aaf21a45954c53b9048e61736d28 (diff) | |
parent | 5ee4e73b81255c30d049c8649a8d5685fa4320aa (diff) | |
download | gitlab-ad35482bdeb587ec816cac4f2231b93fcdd0066a.tar.gz |
Merge pull request #369 from Lujeni/fix_typo_projects_documentation
[docs] Bad arguments in projetcs file documentation
-rw-r--r-- | docs/gl_objects/projects.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/gl_objects/projects.py b/docs/gl_objects/projects.py index 4a6f3ad..878e45d 100644 --- a/docs/gl_objects/projects.py +++ b/docs/gl_objects/projects.py @@ -206,7 +206,7 @@ f = project.files.create({'file_path': 'testfile', # files update f.content = 'new content' -f.save(branch'master', commit_message='Update testfile') # v4 +f.save(branch='master', commit_message='Update testfile') # v4 f.save(branch_name='master', commit_message='Update testfile') # v3 # or for binary data |