Browse Source

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

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

Loading…
Cancel
Save