diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-04-27 07:42:32 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-04-27 07:42:32 +0000 |
commit | b4317b16567a34d8368b78e62dc8dc75727f72d0 (patch) | |
tree | efd0bd3b631c05c65833f908e1ba756ea159ecd0 /lib | |
parent | 57759c9aeedf6ce4763c0b2cbca6eab2dacb3476 (diff) | |
parent | c2f11f32095f67414eab1efe932c8df8ec01c22f (diff) | |
download | gitlab-ce-b4317b16567a34d8368b78e62dc8dc75727f72d0.tar.gz |
Merge branch 'fix-gitorious-importer' into 'master'
Get Gitorious importer to work again.
Fixes #1504.
See merge request !576
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/gitorious_import/client.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/gitorious_import/client.rb b/lib/gitlab/gitorious_import/client.rb index 8cdc3d4afae..1fa89dba448 100644 --- a/lib/gitlab/gitorious_import/client.rb +++ b/lib/gitlab/gitorious_import/client.rb @@ -14,7 +14,7 @@ module Gitlab end def repos - @repos ||= repo_names.map { |full_name| Repository.new(full_name) } + @repos ||= repo_names.map { |full_name| GitoriousImport::Repository.new(full_name) } end def repo(id) |