1
1
mirror of https://github.com/encode/django-rest-framework.git synced 2025-07-26 16:09:49 +03:00

Use urls functions from django instead of compat.

This commit is contained in:
Xavier Ordoquy 2014-05-01 08:41:37 +02:00
parent eb89ed02f2
commit e5441d845e

View File

@ -1,6 +1,6 @@
""" """
Blank URLConf just to keep the test suite happy Blank URLConf just to keep the test suite happy
""" """
from rest_framework.compat import patterns from django.conf.urls import patterns
urlpatterns = patterns('') urlpatterns = patterns('')