Fix bug introduced into Make.py by latest changes

This commit is contained in:
Richard Berger 2016-09-14 18:15:50 -04:00
parent 2fb666dc69
commit 62bf307d3c
1 changed files with 1 additions and 1 deletions

View File

@ -809,7 +809,7 @@ class Packages(object):
original = {}
tmp = "cd %s; make ps" % dir.src
output = subprocess.check_output(tmp,stderr=subprocess.STDOUT,shell=True).decode()
output = subprocess.check_output(tmp,stderr=subprocess.STDOUT,shell=True).decode().split('\n')
pattern = "Installed\s+(\w+): package (\S+)"
for line in output:
m = re.search(pattern,line)