# HG changeset patch # User Jim Hague # Date 1330897471 0 # Node ID 00a1bef43a34e2f8f83de41dd819b8028413b191 # Parent c47bd41e9840bb80f93f3cc355e4db729949507c Fix past end of string bug in Python first line hack. diff -r c47bd41e9840 -r 00a1bef43a34 abcfirstline.py --- a/abcfirstline.py Sun Mar 04 21:06:05 2012 +0000 +++ b/abcfirstline.py Sun Mar 04 21:44:31 2012 +0000 @@ -11,7 +11,7 @@ for line in inf: line = line.strip() start = line[:2] - if start[0] != "|" and start[1] == ":": + if len(start) > 1 and start[0] != "|" and start[1] == ":": if start[0] in ["M", "K", "L"]: print line elif start[0] != "%":