From 20238759d33710ed2d7158bc8ce6123db6760ab9 Mon Sep 17 00:00:00 2001 From: purificant Date: Thu, 28 Feb 2019 16:52:46 +0000 Subject: [PATCH] fix tiny typo --- docs/gl_objects/projects.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/gl_objects/projects.rst b/docs/gl_objects/projects.rst index a00aae07f..b91f5f24e 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':