Skip to content

Commit

Permalink
Corrected deprecation warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
timgraham committed Mar 27, 2014
1 parent e2ac020 commit 12e9adc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django/utils/deprecation.py
Expand Up @@ -2,11 +2,11 @@
import warnings import warnings




class RemovedInDjango20Warning(DeprecationWarning): class RemovedInDjango20Warning(PendingDeprecationWarning):
pass pass




class RemovedInDjango19Warning(PendingDeprecationWarning): class RemovedInDjango19Warning(DeprecationWarning):
pass pass




Expand Down

0 comments on commit 12e9adc

Please sign in to comment.