Merge pull request #3675 from pt247/master

Fix for Incorrect regex in URLPathVersioning documentation #3638
This commit is contained in:
José Padilla 2015-11-26 07:14:58 -04:00
commit 200dda91ac
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ Your URL conf must include a pattern that matches the version with a `'version'`
urlpatterns = [
url(
r'^(?P<version>[v1|v2]+)/bookings/$',
r'^(?P<version>(v1|v2))/bookings/$',
bookings_list,
name='bookings-list'
),