scm: mercurial: change copied file from_revision from revision number to node id.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5480 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
a8e7936337
commit
79b7e89cf9
|
@ -205,7 +205,7 @@ module Redmine
|
||||||
{:action => e['action'],
|
{:action => e['action'],
|
||||||
:path => with_leading_slash(p),
|
:path => with_leading_slash(p),
|
||||||
:from_path => (cpmap.member?(p) ? with_leading_slash(cpmap[p]) : nil),
|
:from_path => (cpmap.member?(p) ? with_leading_slash(cpmap[p]) : nil),
|
||||||
:from_revision => (cpmap.member?(p) ? le['revision'] : nil)}
|
:from_revision => (cpmap.member?(p) ? le['node'] : nil)}
|
||||||
end.sort { |a, b| a[:path] <=> b[:path] }
|
end.sort { |a, b| a[:path] <=> b[:path] }
|
||||||
yield Revision.new(:revision => le['revision'],
|
yield Revision.new(:revision => le['revision'],
|
||||||
:scmid => le['node'],
|
:scmid => le['node'],
|
||||||
|
|
Loading…
Reference in New Issue