File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 11Release History
22---------------
3+ 1.0.1 (2014-08-06)
4+ ++++++++++++++++++
5+
6+ * Small bugfix for an issue affecting sending EMails via the HTMLEmail class
7+
381.0.0 (2014-08-05)
49++++++++++++++++++
510
Original file line number Diff line number Diff line change 55
66Requires Python 2.6 or higher, or the "simplejson" package.
77"""
8- version_info = (1 , 0 , 0 )
8+ version_info = (1 , 0 , 1 )
99__name__ = 'dyn'
1010__doc__ = 'A python wrapper for the DynDNS and DynEmail APIs'
1111__author__ = 'Jonathan Nappi, Cole Tuininga'
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ def send(self, content=None):
103103 raise DynInvalidArgumentError ('body and html' , (None , None ))
104104 api_args = cleared_class_dict (self .__dict__ )
105105 if content is not None :
106- api_args ['html ' ] = content
106+ api_args ['bodyhtml ' ] = content
107107 from_field = api_args .pop ('from_field' )
108108 api_args ['from' ] = from_field
109109 MMSession .get_session ().execute (self .uri , 'POST' , api_args )
You can’t perform that action at this time.
0 commit comments