We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0e4ea38 + 793d074 commit 7f6d544Copy full SHA for 7f6d544
3 files changed
CHANGELOG
@@ -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
6
Version 2.0.6:
7
Update 2.0.6
8
- Added Failed Dependency Excpetion 424
rinzler/__init__.py
@@ -4,7 +4,7 @@
from django.core.exceptions import RequestDataTooBig
__name__ = "Rinzler REST Framework"
-__version__ = "2.0.6"
+__version__ = "2.0.7"
__author__ = ["Rinzler<github.com/feliphebueno>", "4ndr<github.com/4ndr>"]
9
10
import os
rinzler/exceptions/__init__.py
@@ -17,8 +17,5 @@ class RinzlerHttpException(BaseException):
17
def __int__(self):
18
return int(self.status_code)
19
20
- def __str__(self):
21
- return str(self.exception_name)
22
-
23
def __repr__(self):
24
return self.__str__()
0 commit comments