View Single Post
Posts: 43 | Thanked: 3 times | Joined on Jun 2008
#34
Originally Posted by TrueJournals View Post
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":
is it neccesary to add 1 in the front