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:
Diffstat (limited to 'lib/gitlab/repository_url_builder.rb')
-rw-r--r--lib/gitlab/repository_url_builder.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/repository_url_builder.rb b/lib/gitlab/repository_url_builder.rb
index a2d0d50d20b..ed9a298ee8c 100644
--- a/lib/gitlab/repository_url_builder.rb
+++ b/lib/gitlab/repository_url_builder.rb
@@ -10,7 +10,7 @@ module Gitlab
when :http
http_url(path)
else
- raise NotImplementedError.new("No URL builder defined for protocol #{protocol}")
+ raise NotImplementedError, "No URL builder defined for protocol #{protocol}"
end
end