From 7ebbb059347cdc8ea98effaad505acc7c19ce403 Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Wed, 23 Oct 2019 14:37:42 +0100 Subject: [PATCH] target/info: Fix missing return statement Add missing return statement when upgrading a `TargetInfo` POD to v5. --- wa/framework/target/info.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wa/framework/target/info.py b/wa/framework/target/info.py index 9a320026..223770d9 100644 --- a/wa/framework/target/info.py +++ b/wa/framework/target/info.py @@ -421,3 +421,4 @@ class TargetInfo(Podable): @staticmethod def _pod_upgrade_v5(pod): pod['modules'] = pod.get('modules') or [] + return pod