]> source.dussan.org Git - redmine.git/commitdiff
fix source indent of lib/redmine/scm/adapters/mercurial_adapter.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 2 Dec 2020 13:31:04 +0000 (13:31 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 2 Dec 2020 13:31:04 +0000 (13:31 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20537 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/scm/adapters/mercurial_adapter.rb

index 8aa971d1bedec6f4dc52f1cf16169c69ac2b57f9..78396c4bc472182f8ed682e31934a7698fda5569 100644 (file)
@@ -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