Browse Source

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
tags/4.2.0
Toshi MARUYAMA 3 years ago
parent
commit
910eb7dfa2
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      lib/redmine/scm/adapters/mercurial_adapter.rb

+ 4
- 4
lib/redmine/scm/adapters/mercurial_adapter.rb 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

Loading…
Cancel
Save