summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-05-22 21:14:12 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-05-22 22:28:02 +0900
commit658f17b8ec56e3f8bbd70afdb92c6e7aa156e5be (patch)
tree0d842906593470e6192289341daa5ec905312388 /tool
parent2fb69b32968e4c18c8b6fe0a9a33b454feccba32 (diff)
Fixed the method to delegate
* tool/vcs.rb (VCS::GITSVN.revision_name): should delegate to the same method of SVN, not an undefined method.
Diffstat (limited to 'tool')
-rw-r--r--tool/vcs.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/vcs.rb b/tool/vcs.rb
index be7b672d8c..3f0a33147d 100644
--- a/tool/vcs.rb
+++ b/tool/vcs.rb
@@ -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)