aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authoracid-burn <acid-burn@opendreambox.org>2010-09-22 15:39:36 +0200
committeracid-burn <acid-burn@opendreambox.org>2010-09-22 15:41:29 +0200
commit02e81517baae9a339d8f1550c765e02bf550a484 (patch)
treec6f880bc744ce9d474e68ce06806e2ae1d097b19 /lib/python/Components
parentceaa41889d0e8959393b8c0fce601707b9494b73 (diff)
downloadenigma2-02e81517baae9a339d8f1550c765e02bf550a484.tar.gz
enigma2-02e81517baae9a339d8f1550c765e02bf550a484.zip
Components/DreamInfoHandler.py: ignore old meta-xml index files. refs #578
Diffstat (limited to 'lib/python/Components')
-rwxr-xr-xlib/python/Components/DreamInfoHandler.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/python/Components/DreamInfoHandler.py b/lib/python/Components/DreamInfoHandler.py
index dd140cbb..40305671 100755
--- a/lib/python/Components/DreamInfoHandler.py
+++ b/lib/python/Components/DreamInfoHandler.py
@@ -222,6 +222,8 @@ class DreamInfoHandler:
for indexfile in os.listdir(self.directory[0]):
if indexfile.startswith("index-"):
if indexfile.endswith(".xml"):
+ if indexfile[-7:-6] == "_":
+ continue
indexfileList.append(indexfile)
if len(indexfileList):
for file in indexfileList: