Skip to content

Commit

Permalink
Bug Fix
Browse files Browse the repository at this point in the history
Add backwards compatibility for upload_cloudinary_use_https in the
config file.
  • Loading branch information
jakewaldron committed Aug 21, 2016
1 parent 980d822 commit 33bfe77
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/plexEmail.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,13 @@
from email.utils import formataddr
from xml.etree.ElementTree import XML

SCRIPT_VERSION = 'v0.8.7'
SCRIPT_VERSION = 'v0.8.8'

def replaceConfigTokens():
## The below code is for backwards compatibility
if ('upload_cloudinary_use_https' not in config):
config['upload_cloudinary_use_https'] = True

if ('logging_retain_previous_logs' not in config):
config['logging_retain_previous_logs'] = True

Expand Down

0 comments on commit 33bfe77

Please sign in to comment.