Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazuki Sawada <kazuki@6715.jp>2016-02-19 18:30:12 +0300
committerRémy Coutable <remy@rymai.me>2016-03-02 12:35:44 +0300
commitfc170baf3f3594e5179ac613099826ee04c99d3f (patch)
tree3af948e6f39cfe155209c2f764ee8ee8588109ff /lib/gitlab/gitlab_import
parent1217b5b489f72bbbb6df5103c8fc79978ef1fdc7 (diff)
Fix import from gitlab.com
Fixes #12652
Diffstat (limited to 'lib/gitlab/gitlab_import')
-rw-r--r--lib/gitlab/gitlab_import/importer.rb2
1 files changed, 1 insertions, 1 deletions
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)