From 9d2a81a6559a7a3bd049c1e2630ee48c1ab9c39f Mon Sep 17 00:00:00 2001 From: Kairo Araujo Date: Wed, 1 Mar 2017 18:45:39 +0100 Subject: [PATCH] IVXXXXX using different efix IVXXXXX package If you check the efix IV71217 doesn't uses the IV71217*.epkg.Z file for example. In this case the IV71217 uses IV69760.*.epkg.Z The fix is not downloaded and cannot be tested properly http://www-01.ibm.com/support/docview.wss?uid=isg1IV71217 Now the datacollector.py searchs for all IV* files. Change-Id: I87d6440d0c842cd901f7805f97d9fb46567270ba Closes-Bug: #1 --- VERSION | 2 +- saassist/datacollector.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index ceab6e1..6da28dd 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1 \ No newline at end of file +0.1.1 \ No newline at end of file diff --git a/saassist/datacollector.py b/saassist/datacollector.py index 243cdd4..66f2b8b 100644 --- a/saassist/datacollector.py +++ b/saassist/datacollector.py @@ -238,7 +238,7 @@ def _apar_query(row): apar_dwn_link = apar_dwl_cnt.find_all('a') # search for link that has the IV name for apar_link in apar_dwn_link: - if re.search(apar, apar_link.text): + if re.search('IV[0-9][0-9][0-9][0-9][0-9]', apar_link.text): apar_download_link.append('{0}{1}'.format( download.strip(), apar_link.text