aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mageiaSync/mageiaSyncExt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mageiaSync/mageiaSyncExt.py b/mageiaSync/mageiaSyncExt.py
index a477753..5c79ec9 100644
--- a/mageiaSync/mageiaSyncExt.py
+++ b/mageiaSync/mageiaSyncExt.py
@@ -312,7 +312,7 @@ def findRelease(releasePath, password): # List the remote list of relea
while True :
item=process.stdout.readline().rstrip().decode('unicode_escape')
words=item.split()
- if words !=[] and words[-1] != ".":
+ if words !=[] and words[-1] != "." and words[0].startswith('d'):
releaseList.append(words[-1])
process.poll()
if process.returncode != None: