diff options
author | Gauvain Pocentek <gauvainpocentek@gmail.com> | 2018-11-22 18:11:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-22 18:11:48 +0100 |
commit | c8eaeb2d258055b8fc77cbeef373aee5551c181a (patch) | |
tree | c65b88810ccb9c04ea0ebb9def7264ce1e9dd8e3 | |
parent | c72a87aa36c497017df06986bf32200dee3688e4 (diff) | |
parent | b93f2a9ea9661521878ac45d70c7bd9a5a470548 (diff) | |
download | gitlab-c8eaeb2d258055b8fc77cbeef373aee5551c181a.tar.gz |
Merge pull request #634 from python-gitlab/docs/project-typo
docs(projects): fix typo in code sample
Closes #630
-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 276686c..5cc223f 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:: - gl.projects.import_project(open('/tmp/export.tgz', 'rb'), 'my_new_project') + ouput = 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': |