summaryrefslogtreecommitdiff
path: root/totem/plugin/ppstream.py
diff options
context:
space:
mode:
Diffstat (limited to 'totem/plugin/ppstream.py')
-rw-r--r--totem/plugin/ppstream.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/totem/plugin/ppstream.py b/totem/plugin/ppstream.py
index f31b2c3..b88fda4 100644
--- a/totem/plugin/ppstream.py
+++ b/totem/plugin/ppstream.py
@@ -1122,7 +1122,8 @@ class PPStream (totem.Plugin):
if movie.length:
tip += '\n' + _("Length: ") + str(movie.length) + _('Min')
tip += '\n' + _("Score: ") + str(movie.score)
- tip += '\n' + _("Description: ") + '\n' + movie.desc
+ if movie.desc:
+ tip += '\n' + _("Description: ") + '\n' + movie.desc
if hasattr(file, 'longdesc'):
tip += '\n' + _("Long Description: ") + movie.longdesc