Skip to content

Commit 38fdcc7

Browse files
committed
Merge pull request Thibauth#15 from drachenminister/patch-1
Enable HTML Message Support
2 parents c567f37 + fa1f9ad commit 38fdcc7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pushover.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -210,15 +210,15 @@ def send_message(self, message, **kwords):
210210
"""Send a message to the user. It is possible to specify additional
211211
properties of the message by passing keyword arguments. The list of
212212
valid keywords is ``title, priority, sound, callback, timestamp, url,
213-
url_title, device, retry and expire`` which are described in the
213+
url_title, device, retry, expire and html`` which are described in the
214214
Pushover API documentation. For convenience, you can simply set
215215
``timestamp=True`` to set the timestamp to the current timestamp.
216216
217217
This method returns a :class:`MessageRequest` object.
218218
"""
219219
valid_keywords = ["title", "priority", "sound", "callback",
220220
"timestamp", "url", "url_title", "device",
221-
"retry", "expire"]
221+
"retry", "expire", "html"]
222222

223223
payload = {"message": message, "user": self.user_key}
224224
if self.device:

0 commit comments

Comments
 (0)