Skip to content

Commit

Permalink
Bugfix: missing colon
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Büchse <[email protected]>
  • Loading branch information
mbuechse committed Dec 21, 2023
1 parent 9c57398 commit 0eba847
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/iaas/image-metadata/image-md-check.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def is_outdated(img, bdate):
return 3
if time.time() > until:
return 0
if img.is_hidden or img.name[-3:] == "old" or img.name[-4] == "prev" or img.name[-8:].isdecimal():
if img.is_hidden or img.name[-3:] == "old" or img.name[-4:] == "prev" or img.name[-8:].isdecimal():
return 1
if is_date(img.name[-10:]):
return 1
Expand Down

0 comments on commit 0eba847

Please sign in to comment.