Skip to content

Commit

Permalink
Unpack-variables in parentheses to avoid backslash continuation.
Browse files Browse the repository at this point in the history
  • Loading branch information
francois kawala committed Dec 15, 2016
1 parent 97b47f2 commit 70cb629
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions logging/google/cloud/logging/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -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':
Expand Down

0 comments on commit 70cb629

Please sign in to comment.