62: die() not called properly
- Fixed
- Review Board
| 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])