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:
authorJames Lopez <james@jameslopez.es>2016-05-11 15:51:25 +0300
committerJames Lopez <james@jameslopez.es>2016-05-11 15:51:25 +0300
commitcffae0d22ee159b78f66eb68cae9df4bcb9e83e5 (patch)
tree46125f3c5b1717560ad377f1f08ca173a32f7474 /app/services/projects
parent49e6fc40b9d23b4081139a3ad141722a6b1f7cfc (diff)
fixing more export problems
Diffstat (limited to 'app/services/projects')
-rw-r--r--app/services/projects/import_export/export_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/projects/import_export/export_service.rb b/app/services/projects/import_export/export_service.rb
index 87a259ed15a..e6eb6f915b0 100644
--- a/app/services/projects/import_export/export_service.rb
+++ b/app/services/projects/import_export/export_service.rb
@@ -27,7 +27,7 @@ module Projects
end
def notify_worker
- raise Gitlab::ImportExport::Error @shared.errors.join(', ')
+ raise Gitlab::ImportExport::Error.new(@shared.errors.join(', '))
end
end
end