Skip to content

Commit ec75312

Browse files
committed
Explicitly cast proto to str
1 parent 73924f6 commit ec75312

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cisco_gnmi/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def capabilities(self):
112112
proto.gnmi_pb2.CapabilityResponse
113113
"""
114114
message = proto.gnmi_pb2.CapabilityRequest()
115-
LOGGER.debug(message)
115+
LOGGER.debug(str(message))
116116
response = self.service.Capabilities(message)
117117
return response
118118

0 commit comments

Comments
 (0)