Skip to content

Commit

Permalink
Rotate versions in wagtail.utils.deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
gasman authored and kaedroho committed May 23, 2016
1 parent 933c138 commit c8ab0d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wagtail/utils/deprecation.py
Expand Up @@ -3,14 +3,14 @@
import warnings


class RemovedInWagtail16Warning(DeprecationWarning):
class RemovedInWagtail17Warning(DeprecationWarning):
pass


removed_in_next_version_warning = RemovedInWagtail16Warning
removed_in_next_version_warning = RemovedInWagtail17Warning


class RemovedInWagtail17Warning(PendingDeprecationWarning):
class RemovedInWagtail18Warning(PendingDeprecationWarning):
pass


Expand Down

0 comments on commit c8ab0d9

Please sign in to comment.