From 91a5cd5c69f11df24f35031b5a9446cbdda828bf Mon Sep 17 00:00:00 2001 From: Ross Scroggs Date: Sat, 3 Oct 2020 16:52:22 -0700 Subject: [PATCH] Fix bug in sync devices (#1259) --- src/gam/gapi/cloudidentity/devices.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gam/gapi/cloudidentity/devices.py b/src/gam/gapi/cloudidentity/devices.py index fa5fd303..56727eb8 100644 --- a/src/gam/gapi/cloudidentity/devices.py +++ b/src/gam/gapi/cloudidentity/devices.py @@ -326,6 +326,6 @@ def sync(): kwargs = {'customer': customer} else: kwargs = {'body': {'customer': customer}} - gapi.call(ci.devices(), unassigned_missing_action, + gapi.call(ci.devices(), action, name=name, **kwargs) print(f'{action}d {sn}')