clean_old option was duplicated on clean_empty
The --no-old option wouldn't work because the check was checking for --no-empty, and --no-empty was disabling both checks. :) Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
parent
b3049b0ebf
commit
fa8ac96d54
1 changed files with 1 additions and 1 deletions
|
|
@ -190,7 +190,7 @@ def delete_tags(tags):
|
|||
|
||||
def clean_empty(tags):
|
||||
# delete empty tags which are older than --empty-delay
|
||||
if not options.clean_old:
|
||||
if not options.clean_empty:
|
||||
return tags
|
||||
passed = []
|
||||
candidates = []
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue