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-06-20 09:58:43 +0300
committerJames Lopez <james@jameslopez.es>2016-06-20 09:58:43 +0300
commitcee2a2dc66a16695fad28657d6649e861a3c1be8 (patch)
tree8950ae98600f1d9b594d8154c502253dcdfcb904 /app/services/projects/import_export
parent98cede7ebeae9dac994b35b66be6aab14eb932b3 (diff)
fixed a couple of errors spotted in production
Diffstat (limited to 'app/services/projects/import_export')
-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 d6752377ce5..80c7193efcb 100644
--- a/app/services/projects/import_export/export_service.rb
+++ b/app/services/projects/import_export/export_service.rb
@@ -50,7 +50,7 @@ module Projects
end
def notify_error
- notification_service.project_not_exported(@project, @current_user, @shared.errors.join(', '))
+ notification_service.project_not_exported(@project, @current_user, @shared.errors)
end
end
end