Skip to content

Commit 6447ac7

Browse files
committed
Print is a function.
1 parent 8337487 commit 6447ac7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

iot/api-client/manager/manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,8 @@ def get_device(
209209
device = client.projects().locations().registries().devices(
210210
).get(name=device_name).execute()
211211

212-
print 'Id : {}'.format(device.get('id'))
213-
print 'Name : {}'.format(device.get('name'))
212+
print('Id : {}'.format(device.get('id')))
213+
print('Name : {}'.format(device.get('name')))
214214
print('Credentials:')
215215
if device.get('credentials') is not None:
216216
for credential in device.get('credentials'):

0 commit comments

Comments
 (0)