Skip to content

Commit

Permalink
turns out I didn't need to escape some of those chars
Browse files Browse the repository at this point in the history
  • Loading branch information
matin committed Feb 23, 2019
1 parent a6ad3a2 commit d8336e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion botmaker/helpers.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import re


SANITIZE_PHONE_NUMBER = re.compile(r'[\+\.\(\)\-\s]')
SANITIZE_PHONE_NUMBER = re.compile(r'[+.()\-\s]')


def sanitize_phone_number(phone_number):
Expand Down

0 comments on commit d8336e7

Please sign in to comment.