summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tool/vcs.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/vcs.rb b/tool/vcs.rb
index 9d0a276937..93d642efec 100644
--- a/tool/vcs.rb
+++ b/tool/vcs.rb
@@ -138,7 +138,7 @@ class VCS
end
def modified(path)
- last, changed, modified, *rest = get_revisions(path)
+ _, _, modified, * = get_revisions(path)
modified
end