diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2008-06-03 12:06:46 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2008-06-03 12:06:46 +0000 |
| commit | d3bc0e501ea1768cfb24ee6d7a780784e956a706 (patch) | |
| tree | 501a8b286c72c61165058ca536272ce1e34e0d81 /lib/python | |
| parent | c6d6a6bf299db0314a444258dcde7716c580dba2 (diff) | |
| download | enigma2-d3bc0e501ea1768cfb24ee6d7a780784e956a706.tar.gz enigma2-d3bc0e501ea1768cfb24ee6d7a780784e956a706.zip | |
fix tag prerequisite logic for .info files without tags
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Components/DreamInfoHandler.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/python/Components/DreamInfoHandler.py b/lib/python/Components/DreamInfoHandler.py index 570143da..261e800f 100644 --- a/lib/python/Components/DreamInfoHandler.py +++ b/lib/python/Components/DreamInfoHandler.py @@ -157,6 +157,8 @@ class DreamInfoHandler: if prerequisites.has_key("tag"): if not self.neededTag in prerequisites["tag"]: return False + else: + return False if prerequisites.has_key("satellite"): for sat in prerequisites["satellite"]: |
