Skip to content

Commit

Permalink
Explicitly cast proto to str
Browse files Browse the repository at this point in the history
  • Loading branch information
remingtonc committed Apr 30, 2020
1 parent 73924f6 commit ec75312
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cisco_gnmi/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def capabilities(self):
proto.gnmi_pb2.CapabilityResponse
"""
message = proto.gnmi_pb2.CapabilityRequest()
LOGGER.debug(message)
LOGGER.debug(str(message))
response = self.service.Capabilities(message)
return response

Expand Down

0 comments on commit ec75312

Please sign in to comment.