Skip to content

Commit

Permalink
Merge 88e7519 into b0bbe02
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasBackx committed Jul 10, 2017
2 parents b0bbe02 + 88e7519 commit 9ace1d6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CHANGES
Expand Up @@ -2,6 +2,14 @@
CHANGELOG
=========

0.4.3
=====

** Bugfixes **

- Fix SafeDeleteMixin not being abstract, it is an abstract model now.


0.4.2
=====

Expand Down
3 changes: 3 additions & 0 deletions safedelete/models.py
Expand Up @@ -208,6 +208,9 @@ class SafeDeleteMixin(SafeDeleteModel):
Use :class:`SafeDeleteModel` instead.
"""

class Meta:
abstract = True

def __init__(self, *args, **kwargs):
warnings.warn('The SafeDeleteMixin class was renamed SafeDeleteModel',
DeprecationWarning)
Expand Down

0 comments on commit 9ace1d6

Please sign in to comment.