From: Frantisek Hrbata Date: Sun, 27 Dec 2020 11:26:28 +0000 (+0100) Subject: git-mr-show: use set instead of dict for tag listing X-Git-Tag: v0.3~5 X-Git-Url: http://www.hrbata.com/gitweb/?a=commitdiff_plain;h=36b3c416ecb7dd093d0da0b768fb87a2e3a8760d;p=gimrr.git git-mr-show: use set instead of dict for tag listing Signed-off-by: Frantisek Hrbata --- diff --git a/git-mr-show b/git-mr-show index c976959..f99b355 100755 --- a/git-mr-show +++ b/git-mr-show @@ -167,7 +167,7 @@ tag_desc = { } if args.tags: - tset = dict() + tset = set() for commits in tags.values(): for tags in commits.values(): for tag in tags: