1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-27 10:51:15 +00:00

fix source indent of lib/redmine/scm/adapters/mercurial_adapter.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@20022 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-09-12 12:57:50 +00:00
parent 4261101ae5
commit 910eb7dfa2

View File

@ -228,7 +228,7 @@ module Redmine
rescue
''
end)
),
),
:time => Time.parse(le['date']['__content__']),
:message => CGI.unescape(le['msg']['__content__']),
:paths => paths,
@ -325,9 +325,9 @@ module Redmine
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
)
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