From daa4f63e1d48a7e88c3814790384e2e36373e2e8 Mon Sep 17 00:00:00 2001 From: Christian Gagnon Date: Tue, 18 Sep 2018 05:19:10 -0400 Subject: [PATCH] Fixed missing space for GoolgeAdsValueError message. --- googleads/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/googleads/common.py b/googleads/common.py index dad772e3..8855b704 100644 --- a/googleads/common.py +++ b/googleads/common.py @@ -186,7 +186,7 @@ def LoadFromString(yaml_doc, product_yaml_key, required_client_values, if 'dfp' in data: raise googleads.errors.GoogleAdsValueError( - 'Please replace the "dfp" key in the configuration YAML string with' + 'Please replace the "dfp" key in the configuration YAML string with ' '"ad_manager" to fix this issue.') logging_config = data.get(_LOGGING_KEY)