diff options
| author | acid-burn <acid-burn@opendreambox.org> | 2010-09-29 09:28:40 +0200 |
|---|---|---|
| committer | acid-burn <acid-burn@opendreambox.org> | 2010-09-29 09:31:03 +0200 |
| commit | 3a44514adf9e366316213ba027d3e8808bad6b0c (patch) | |
| tree | 67e37eba511f03ec1af2a6654622c0c8b121e850 /lib/python/Components | |
| parent | 9213e54544d3782b1a4766960146f95988c517ed (diff) | |
| download | enigma2-3a44514adf9e366316213ba027d3e8808bad6b0c.tar.gz enigma2-3a44514adf9e366316213ba027d3e8808bad6b0c.zip | |
DreamInfoHandler.py: strip data. refs #578
Diffstat (limited to 'lib/python/Components')
| -rwxr-xr-x | lib/python/Components/DreamInfoHandler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/DreamInfoHandler.py b/lib/python/Components/DreamInfoHandler.py index 40305671..03d52157 100755 --- a/lib/python/Components/DreamInfoHandler.py +++ b/lib/python/Components/DreamInfoHandler.py @@ -123,7 +123,7 @@ class InfoHandler(xml.sax.ContentHandler): if self.elements[-1] == "shortdescription": self.attributes["shortdescription"] = str(data) if self.elements[-1] == "description": - self.data += data + self.data += data.strip() self.attributes["description"] = str(self.data) #print "characters", data |
