From ac76c05d6921e06bc58417372b16ae8615b773eb Mon Sep 17 00:00:00 2001 From: Mohan Boddu Date: Jun 14 2019 15:13:23 +0000 Subject: Moving to use just message.body https://github.com/fedora-infra/fedmsg-migration-tools/issues/20 Signed-off-by: Mohan Boddu --- diff --git a/compose_tracker.py b/compose_tracker.py index 3da8648..3be037f 100755 --- a/compose_tracker.py +++ b/compose_tracker.py @@ -94,7 +94,7 @@ class Consumer(object): # Grab the raw message body and the status from that msg = message.body - status = msg['msg']['status'] + status = msg['status'] # Print out a log statement if the day has changed today = datetime.date.today()