From ac5819da8e0c44740a9885dff18f0a62344c8c78 Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Wed, 17 Jul 2019 11:37:21 +0100 Subject: [PATCH] output_processors/postgres: Fix incorrect dict keys --- wa/output_processors/postgresql.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wa/output_processors/postgresql.py b/wa/output_processors/postgresql.py index d9892bbc..4f0c29c0 100644 --- a/wa/output_processors/postgresql.py +++ b/wa/output_processors/postgresql.py @@ -209,8 +209,8 @@ class PostgresqlResultProcessor(OutputProcessor): list(target_pod.get('screen_resolution', [])), target_pod.get('prop'), target_pod.get('android_id'), - target_pod.get('pod_version'), - target_pod.get('pod_serialization_version'), + target_pod.get('_pod_version'), + target_pod.get('_pod_serialization_version'), ) )