1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-12-12 11:02:21 -05:00

Merge branch 'abeloin-hotfix-nzb_api_key' into develop

This commit is contained in:
Alexandre Beloin 2015-02-23 13:46:55 -05:00
commit 522477f93e

View File

@ -59,6 +59,8 @@ class CensoredFormatter(logging.Formatter, object):
for k, v in censoredItems.items():
if v and len(v) > 0 and v in msg:
msg = msg.replace(v, len(v) * '*')
# Needed because Newznab apikey isn't stored as key=value in a section.
msg = re.sub('apikey\=[^\&]*\&','apikey\=**********\&', msg)
return msg