mirror of
https://github.com/Hopiu/django.git
synced 2026-04-01 05:40:32 +00:00
Corrected deprecation warnings.
This commit is contained in:
parent
e2ac0203d9
commit
12e9adcd71
1 changed files with 2 additions and 2 deletions
|
|
@ -2,11 +2,11 @@ import inspect
|
|||
import warnings
|
||||
|
||||
|
||||
class RemovedInDjango20Warning(DeprecationWarning):
|
||||
class RemovedInDjango20Warning(PendingDeprecationWarning):
|
||||
pass
|
||||
|
||||
|
||||
class RemovedInDjango19Warning(PendingDeprecationWarning):
|
||||
class RemovedInDjango19Warning(DeprecationWarning):
|
||||
pass
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue