summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-04-06 21:38:27 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-04-06 21:38:27 +0200
commitcf299b2955c82bd13efd61446570df8baef942ff (patch)
treefaeb5fe53fe99f56ad7fecb52d536ca7a9840080 /module/plugins/internal
parentDebridItaliaCom: fail instead of offline to allow revert to traditional download (diff)
downloadpyload-cf299b2955c82bd13efd61446570df8baef942ff.tar.xz
NetfolderIn, SimpleCrypter: stripping folder name.
+ cosmetics
Diffstat (limited to 'module/plugins/internal')
-rw-r--r--module/plugins/internal/SimpleCrypter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/internal/SimpleCrypter.py b/module/plugins/internal/SimpleCrypter.py
index b2cc03985..c9e350e86 100644
--- a/module/plugins/internal/SimpleCrypter.py
+++ b/module/plugins/internal/SimpleCrypter.py
@@ -57,7 +57,7 @@ class SimpleCrypter(Crypter):
if hasattr(self, 'TITLE_PATTERN'):
m = re.search(self.TITLE_PATTERN, self.html)
if m:
- name = folder = m.group('title')
+ name = folder = m.group('title').strip()
self.logDebug("Found name [%s] and folder [%s] in package info" % (name, folder))
return name, folder