Signed-off-by: fly <merspieler@airmail.cc>
This commit is contained in:
fly 2020-02-02 00:42:35 +00:00
parent 4ee2d08200
commit 07932c2207

View file

@ -68,7 +68,7 @@ def get_status(name):
msg = sock.recv(128)
sock.close()
msg = msg.decode()
match = re.match(r"pending|done|rebuild|skip|started", msg)
match = re.match(r"pending|done|rebuild|skip|started|packaged", msg)
if match != None:
return match.group(0)
else: