1
0
Fork 0
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:
Nobuyoshi Nakada 2019-05-22 21:14:12 +09:00
parent 2fb69b3296
commit 658f17b8ec
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -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)