Very nice! Just one small bug I noticed. Numbers in the form 1 (xxx) xxx-xxxx no longer show up correctly. Very simple fix, though. Just change line 549 from: Code: elif len(phonenumber) > 8 and phonenumber[0] == 1: to: Code: elif len(phonenumber) > 8 and phonenumber[0] == "1":
elif len(phonenumber) > 8 and phonenumber[0] == 1:
elif len(phonenumber) > 8 and phonenumber[0] == "1":