diff --git a/app/views/settings/_repositories.html.erb b/app/views/settings/_repositories.html.erb
index 5c8ba2432..3341de313 100644
--- a/app/views/settings/_repositories.html.erb
+++ b/app/views/settings/_repositories.html.erb
@@ -13,29 +13,29 @@
<% scm_class = "Repository::#{choice}".constantize %>
<% text, value = (choice.is_a?(Array) ? choice : [choice, choice]) %>
<% setting = :enabled_scm %>
- <% enabled = Setting.send(setting).include?(value) %>
+ <% enabled = Setting.send(setting).include?(value) %>
|
- <% if enabled %>
- <%=
- image_tag(
+ <% if enabled %>
+ <%=
+ image_tag(
(scm_class.scm_available ? 'true.png' : 'exclamation.png'),
:style => "vertical-align:bottom;"
- )
+ )
%>
<%= scm_class.scm_command %>
- <% end %>
- |
-
- <%= scm_class.scm_version_string if enabled %>
- |
-
+ <% end %>
+
+
+ <%= scm_class.scm_version_string if enabled %>
+ |
+
<% end %>
<%= l(:text_scm_config) %>