From 6c1b753d0433cae98d133c08cd22ca10bba58c86 Mon Sep 17 00:00:00 2001 From: papoteur-mga Date: Sat, 20 Sep 2014 22:30:39 +0200 Subject: Suppression of "." in the list of releases --- mageiaSync/mageiaSyncExt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mageiaSync/mageiaSyncExt.py b/mageiaSync/mageiaSyncExt.py index 511ffe3..16b9830 100644 --- a/mageiaSync/mageiaSyncExt.py +++ b/mageiaSync/mageiaSyncExt.py @@ -308,7 +308,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 !=[]: + if words !=[] and words[-1] != ".": releaseList.append(words[-1]) process.poll() if process.returncode != None: -- cgit v1.2.1