diff options
author | purificant <purificant@users.noreply.github.com> | 2019-02-28 16:52:46 +0000 |
---|---|---|
committer | purificant <purificant@users.noreply.github.com> | 2019-02-28 16:52:46 +0000 |
commit | 20238759d33710ed2d7158bc8ce6123db6760ab9 (patch) | |
tree | b442a627871798c98c738a9494dfa47cf09eecb1 /docs/gl_objects | |
parent | e58d2a8567545ce14a6e1ee64423fe12f571b2ca (diff) | |
download | gitlab-20238759d33710ed2d7158bc8ce6123db6760ab9.tar.gz |
fix tiny typo
Diffstat (limited to 'docs/gl_objects')
-rw-r--r-- | docs/gl_objects/projects.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/gl_objects/projects.rst b/docs/gl_objects/projects.rst index a00aae0..b91f5f2 100644 --- a/docs/gl_objects/projects.rst +++ b/docs/gl_objects/projects.rst @@ -247,7 +247,7 @@ generated by GitLab you need to: Import the project:: - ouput = gl.projects.import_project(open('/tmp/export.tgz', 'rb'), 'my_new_project') + output = gl.projects.import_project(open('/tmp/export.tgz', 'rb'), 'my_new_project') # Get a ProjectImport object to track the import status project_import = gl.projects.get(output['id'], lazy=True).imports.get() while project_import.import_status != 'finished': |