PR#1726: fix typo in --ignore-tags
Merges #1726 https://pagure.io/koji/pull-request/1726 Fixes: #1725 https://pagure.io/koji/issue/1725 koji-gc --ignore-tags doesn't work
This commit is contained in:
commit
30917fc5cf
1 changed files with 1 additions and 1 deletions
|
|
@ -224,7 +224,7 @@ def check_tag(name):
|
|||
"""
|
||||
if options.ignore_tags:
|
||||
for pattern in options.ignore_tags:
|
||||
if fnmatch.fnmatch(name, options.tag_filter):
|
||||
if fnmatch.fnmatch(name, pattern):
|
||||
return False
|
||||
if options.tag_filter:
|
||||
for pattern in options.tag_filter:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue