Skip to content

Commit

Permalink
Merge pull request #74 from shinriyo/patch-1
Browse files Browse the repository at this point in the history
\\to\
  • Loading branch information
rdegges committed Jun 8, 2017
2 parents 53dce5d + 0159b1d commit 54719a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django_twilio/views.py
Expand Up @@ -153,7 +153,7 @@ def dial(request, number, action=None, method='POST', timeout=None,
# urls.py
urlpatterns = patterns('',
# ...
url(r'^dial/?(P<number>\\w+)/$', 'django_twilio.views.dial'),
url(r'^dial/?(P<number>\w+)/$', 'django_twilio.views.dial'),
# ...
)
"""
Expand All @@ -176,7 +176,7 @@ def conference(request, name, muted=None, beep=None,
# urls.py
urlpatterns = patterns('',
# ...
url(r'^conference/?(P<name>\\w+)/$', 'django_twilio.views.conference',
url(r'^conference/?(P<name>\w+)/$', 'django_twilio.views.conference',
{'max_participants': 10}),
# ...
)
Expand Down

0 comments on commit 54719a0

Please sign in to comment.