From bfe34e060b00db709380011ee5b308791c13c9a9 Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Sun, 18 Feb 2018 08:36:53 -0800 Subject: [PATCH] Fix KeyError from 868aeb3 --- plexpy/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/common.py b/plexpy/common.py index 9c522ad9..75a91231 100644 --- a/plexpy/common.py +++ b/plexpy/common.py @@ -471,7 +471,7 @@ NOTIFICATION_PARAMETERS = [ 'parameters': [ {'name': 'Update Version', 'type': 'str', 'value': 'update_version', 'description': 'The available update version for your Plex Server.'}, {'name': 'Update Url', 'type': 'str', 'value': 'update_url', 'description': 'The download URL for the available update.'}, - {'name': 'Update Release Date', 'str': 'int', 'value': 'update_release_date', 'description': 'The release date of the available update.'}, + {'name': 'Update Release Date', 'type': 'str', 'value': 'update_release_date', 'description': 'The release date of the available update.'}, {'name': 'Update Channel', 'type': 'str', 'value': 'update_channel', 'description': 'The update channel.', 'example': 'Public or Plex Pass'}, {'name': 'Update Platform', 'type': 'str', 'value': 'update_platform', 'description': 'The platform of your Plex Server.'}, {'name': 'Update Distro', 'type': 'str', 'value': 'update_distro', 'description': 'The distro of your Plex Server.'},