From 70cb62938afde42de1a630c83caa2f37d89c0d19 Mon Sep 17 00:00:00 2001 From: francois kawala Date: Thu, 15 Dec 2016 17:09:13 +0100 Subject: [PATCH] Unpack-variables in parentheses to avoid backslash continuation. --- logging/google/cloud/logging/logger.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/logging/google/cloud/logging/logger.py b/logging/google/cloud/logging/logger.py index 07eb2de59de8..d5a5b201dca0 100644 --- a/logging/google/cloud/logging/logger.py +++ b/logging/google/cloud/logging/logger.py @@ -455,8 +455,8 @@ def commit(self, client=None): kwargs['labels'] = self.logger.labels entries = [] - for entry_type, entry, labels, iid, severity, http_req, timestamp in \ - self.entries: + for (entry_type, entry, labels, iid, severity, http_req, + timestamp) in self.entries: if entry_type == 'text': info = {'textPayload': entry} elif entry_type == 'struct':