summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvainpocentek@gmail.com>2019-03-01 09:23:24 +0100
committerGitHub <noreply@github.com>2019-03-01 09:23:24 +0100
commitb21fa2854302ef4d9301242ef719eaa509adf077 (patch)
treeb442a627871798c98c738a9494dfa47cf09eecb1
parente58d2a8567545ce14a6e1ee64423fe12f571b2ca (diff)
parent20238759d33710ed2d7158bc8ce6123db6760ab9 (diff)
downloadgitlab-b21fa2854302ef4d9301242ef719eaa509adf077.tar.gz
Merge pull request #721 from purificant/fix_typo
fix tiny typo
-rw-r--r--docs/gl_objects/projects.rst2
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':