From 065681406331f5676b561b83cae7bdd5b4f7dca6 Mon Sep 17 00:00:00 2001 From: Kazuki Sawada Date: Sat, 20 Feb 2016 00:30:12 +0900 Subject: Fix import from gitlab.com Fixes #12652 --- CHANGELOG | 1 + lib/gitlab/gitlab_import/importer.rb | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index d3e28dcfc76..0503147bc4c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -10,6 +10,7 @@ v 8.6.0 (unreleased) v 8.5.2 - Fix sidebar overlapping content when screen width was below 1200px - Fix error 500 when commenting on a commit + - Fix import from gitlab.com (KazSawada) v 8.5.1 - Fix group projects styles diff --git a/lib/gitlab/gitlab_import/importer.rb b/lib/gitlab/gitlab_import/importer.rb index 59926084d07..850b73244c6 100644 --- a/lib/gitlab/gitlab_import/importer.rb +++ b/lib/gitlab/gitlab_import/importer.rb @@ -12,7 +12,7 @@ module Gitlab end def execute - project_identifier = CGI.escape(project.import_source, '/') + project_identifier = CGI.escape(project.import_source) #Issues && Comments issues = client.issues(project_identifier) -- cgit v1.2.1