summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/redmine/scm/adapters/mercurial_adapter.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/redmine/scm/adapters/mercurial_adapter.rb b/lib/redmine/scm/adapters/mercurial_adapter.rb
index 8aa971d1b..78396c4bc 100644
--- a/lib/redmine/scm/adapters/mercurial_adapter.rb
+++ b/lib/redmine/scm/adapters/mercurial_adapter.rb
@@ -324,10 +324,11 @@ module Redmine
full_args << '--config' << "extensions.redminehelper=#{HG_HELPER_EXT}"
full_args << '--config' << 'diff.git=false'
full_args += args
- ret = shellout(
- self.class.sq_bin + ' ' + full_args.map {|e| shell_quote e.to_s}.join(' '),
- &block
- )
+ ret =
+ shellout(
+ self.class.sq_bin + ' ' + full_args.map {|e| shell_quote e.to_s}.join(' '),
+ &block
+ )
if $? && $?.exitstatus != 0
raise HgCommandAborted, "hg exited with non-zero status: #{$?.exitstatus}"
end