From 8659de71cd487946c56f4bced7bbef42fa1dcb1b Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Wed, 26 May 2021 20:47:54 +0200 Subject: [PATCH] Comment out unused (and unneeded?) default_branch --- latest-tags.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/latest-tags.py b/latest-tags.py index 38a2c2d..05fdb6f 100755 --- a/latest-tags.py +++ b/latest-tags.py @@ -24,8 +24,8 @@ import subprocess def main(): # # TODO: Add user defined keywords to the list. # ignored_keywords = ["pre", "rc", "beta", "alpha", "dev"] - # TODO: Add a ability for the user to customize this. - default_branch = "master" + # # TODO: Add a ability for the user to customize this. + # default_branch = "main" # Retrieve all tags in the repo (that are fetched...) tags = subprocess.run(["git", "tag"], stdout=subprocess.PIPE)