We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36525d3 commit 338fa0dCopy full SHA for 338fa0d
CHANGELOG.md
@@ -1,6 +1,11 @@
1
# Change Log
2
All notable changes to this project will be documented in this file.
3
4
+## [1.5.14] - 2015-11-09 ##
5
+
6
+### Fixed ###
7
+- Fix "Mail uses old-style class again" [144](https://github.com/sendgrid/sendgrid-python/issues/144)
8
9
## [1.5.13] - 2015-10-28 ##
10
11
### Fixed ###
sendgrid/message.py
@@ -8,7 +8,7 @@
from smtpapi import SMTPAPIHeader
-class Mail():
+class Mail(object):
12
13
"""SendGrid Message."""
14
sendgrid/version.py
@@ -1,2 +1,2 @@
-version_info = (1, 5, 13)
+version_info = (1, 5, 14)
__version__ = '.'.join(str(v) for v in version_info)
0 commit comments