mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fixed the method to delegate
* tool/vcs.rb (VCS::GITSVN.revision_name): should delegate to the same method of SVN, not an undefined method.
This commit is contained in:
parent
2fb69b3296
commit
658f17b8ec
1 changed files with 1 additions and 1 deletions
|
@ -529,7 +529,7 @@ class VCS
|
||||||
|
|
||||||
class GITSVN < GIT
|
class GITSVN < GIT
|
||||||
def self.revision_name(rev)
|
def self.revision_name(rev)
|
||||||
SVN.short_revision(rev)
|
SVN.revision_name(rev)
|
||||||
end
|
end
|
||||||
|
|
||||||
def format_changelog(r, path)
|
def format_changelog(r, path)
|
||||||
|
|
Loading…
Reference in a new issue