Skip to content

Commit 7f6d544

Browse files
authored
Merge pull request #17 from feliphebueno/2.0.7
Removed __str__ overwrite in exceptions/__init__ - OK
2 parents 0e4ea38 + 793d074 commit 7f6d544

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2+
Version 2.0.7:
3+
Update 2.0.7
4+
- Removed __str__ over write in exceptions/__init__.py
5+
16
Version 2.0.6:
27
Update 2.0.6
38
- Added Failed Dependency Excpetion 424

rinzler/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from django.core.exceptions import RequestDataTooBig
55

66
__name__ = "Rinzler REST Framework"
7-
__version__ = "2.0.6"
7+
__version__ = "2.0.7"
88
__author__ = ["Rinzler<github.com/feliphebueno>", "4ndr<github.com/4ndr>"]
99

1010
import os

rinzler/exceptions/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,5 @@ class RinzlerHttpException(BaseException):
1717
def __int__(self):
1818
return int(self.status_code)
1919

20-
def __str__(self):
21-
return str(self.exception_name)
22-
2320
def __repr__(self):
2421
return self.__str__()

0 commit comments

Comments
 (0)