From 5fff336f70edd7dae1cbf226b8b60bbf1a52cf7c Mon Sep 17 00:00:00 2001 From: Rick van Hattem Date: Sat, 10 May 2014 00:34:10 +0200 Subject: [PATCH] Fixing issue #463 --- sickbeard/helpers.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sickbeard/helpers.py b/sickbeard/helpers.py index 95044899..fda74eb9 100644 --- a/sickbeard/helpers.py +++ b/sickbeard/helpers.py @@ -9,7 +9,7 @@ # (at your option) any later version. # # Sick Beard is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of +# but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # @@ -679,6 +679,8 @@ def sanitizeSceneName(name, ezrss=False): name = name[:-1] return name + else: + return '' def create_https_certificates(ssl_cert, ssl_key):