62: die() not called properly

gau****@gmai***** (Google Code) (Is this you? Claim this profile.)
May 26, 2007
The script has a bug in this line

         if not m:
                die("Unable to parse diff header: %s", dl[1])

It should be
         if not m:
                die("Unable to parse diff header: %s" % dl[1])
david
#1 david
Fixed in svn, thanks.
  • +Fixed