mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-15 13:43:36 +00:00
16 lines
540 B
Python
16 lines
540 B
Python
"""
|
|
Backwards-compatible URLconf for existing django-registration
|
|
installs; this allows the standard ``include('registration.urls')`` to
|
|
continue working, but that usage is deprecated and will be removed for
|
|
django-registration 1.0. For new installs, use
|
|
``include('registration.backends.default.urls')``.
|
|
|
|
"""
|
|
|
|
import warnings
|
|
|
|
warnings.warn("include('registration.urls') is deprecated; use include('registration.backends.default.urls') instead.",
|
|
PendingDeprecationWarning)
|
|
|
|
from registration.backends.default.urls import *
|