summaryrefslogtreecommitdiffstats
path: root/lib/redmine/scm/adapters
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-09-12 12:57:50 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-09-12 12:57:50 +0000
commit910eb7dfa27ab3beb7f8b5b68b2e115824cc8655 (patch)
tree873299117736b0383ae843f31630a8891bdd9c15 /lib/redmine/scm/adapters
parent4261101ae5d429ff53af9252bc6e27ac7b776f60 (diff)
downloadredmine-910eb7dfa27ab3beb7f8b5b68b2e115824cc8655.tar.gz
redmine-910eb7dfa27ab3beb7f8b5b68b2e115824cc8655.zip
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
Diffstat (limited to 'lib/redmine/scm/adapters')
-rw-r--r--lib/redmine/scm/adapters/mercurial_adapter.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/redmine/scm/adapters/mercurial_adapter.rb b/lib/redmine/scm/adapters/mercurial_adapter.rb
index 00c8e3df9..e914a631c 100644
--- a/lib/redmine/scm/adapters/mercurial_adapter.rb
+++ b/lib/redmine/scm/adapters/mercurial_adapter.rb
@@ -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