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
|
||||
def self.revision_name(rev)
|
||||
SVN.short_revision(rev)
|
||||
SVN.revision_name(rev)
|
||||
end
|
||||
|
||||
def format_changelog(r, path)
|
||||
|
|
Loading…
Reference in a new issue