summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteveMoto <github-com@stevemoto.com>2019-08-27 21:34:08 +0200
committerGiampaolo Rodola <g.rodola@gmail.com>2019-08-27 21:34:08 +0200
commit0609217bf6c153bea589f060614baed4ad9307e9 (patch)
treeee42357a7c63e95831cb23092f9ec287c7b3cfeb
parentc10df5aa04e1ced58d19501fa42f08c1b909b83d (diff)
downloadpsutil-0609217bf6c153bea589f060614baed4ad9307e9.tar.gz
typo fix scripts/internal/print_timeline.py (#1556)
-rw-r--r--scripts/internal/print_timeline.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/internal/print_timeline.py b/scripts/internal/print_timeline.py
index 4bfe76b3..9bf6e9d1 100644
--- a/scripts/internal/print_timeline.py
+++ b/scripts/internal/print_timeline.py
@@ -30,7 +30,7 @@ def get_tag_date(tag):
def main():
releases = []
- out = sh("git tags")
+ out = sh("git tag")
for line in out.split('\n'):
tag = line.split(' ')[0]
ver = tag.replace('release-', '')