fix source indents of lib/redmine/scm/adapters/bazaar_adapter.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@19874 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2020-07-09 15:18:39 +00:00
parent 2f23b63a21
commit a9ac06fea5

View File

@@ -237,12 +237,14 @@ module Redmine
next unless line =~ %r{^(\d+) ([^|]+)\| (.*)$}
rev = $1
blame.add_line($3.rstrip,
blame.add_line(
$3.rstrip,
Revision.new(
:identifier => rev,
:revision => rev,
:author => $2.strip
))
:identifier => rev,
:revision => rev,
:author => $2.strip
)
)
end
end
blame