diff options
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rwxr-xr-x | bin/glsa-check | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -1,3 +1,6 @@ +2009-06-22: Paul Varner <fuzzyray@gentoo.org> + * glsa-check: Fix traceback with glsa-check -f (Bug 275105) + 2009-06-05: Paul Varner <fuzzyray@gentoo.org> * epkginfo: Add patch from Sebastian Mingramm to Make epkginfo slot aware and only print keywords for the highest visible versions in each diff --git a/bin/glsa-check b/bin/glsa-check index c24ef23..a66371c 100755 --- a/bin/glsa-check +++ b/bin/glsa-check @@ -287,8 +287,8 @@ if mode in ["dump", "fix", "inject", "pretend"]: exitcode >>= 8 if exitcode: sys.exit(exitcode) - if len(mergelist): - sys.stdout.write("\n") + if len(mergelist): + sys.stdout.write("\n") elif mode == "pretend": sys.stdout.write("Checking GLSA "+myid+"\n") if not myglsa.isVulnerable(): |
