gam7 7.27.0__py3-none-any.whl → 7.27.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of gam7 might be problematic. Click here for more details.

gam/__init__.py CHANGED
@@ -25,7 +25,7 @@ https://github.com/GAM-team/GAM/wiki
25
25
  """
26
26
 
27
27
  __author__ = 'GAM Team <google-apps-manager@googlegroups.com>'
28
- __version__ = '7.27.00'
28
+ __version__ = '7.27.01'
29
29
  __license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
30
30
 
31
31
  #pylint: disable=wrong-import-position
@@ -64917,11 +64917,11 @@ def claimOwnership(users):
64917
64917
  elif myarg == 'onlyusers':
64918
64918
  _, userList = getEntityToModify(defaultEntityType=Cmd.ENTITY_USERS)
64919
64919
  checkOnly = True
64920
- onlyOwners = set(userList)
64920
+ onlyOwners = {normalizeEmailAddressOrUID(user, noUid=True) for user in userList}
64921
64921
  elif myarg == 'skipusers':
64922
64922
  _, userList = getEntityToModify(defaultEntityType=Cmd.ENTITY_USERS)
64923
64923
  checkSkip = len(userList) > 0
64924
- skipOwners = set(userList)
64924
+ skipOwners = {normalizeEmailAddressOrUID(user, noUid=True) for user in userList}
64925
64925
  elif myarg == 'subdomains':
64926
64926
  subdomains = getEntityList(Cmd.OB_DOMAIN_NAME_ENTITY)
64927
64927
  elif myarg == 'includetrashed':
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gam7
3
- Version: 7.27.0
3
+ Version: 7.27.1
4
4
  Summary: CLI tool to manage Google Workspace
5
5
  Project-URL: Homepage, https://github.com/GAM-team/GAM
6
6
  Project-URL: Issues, https://github.com/GAM-team/GAM/issues
@@ -1,4 +1,4 @@
1
- gam/__init__.py,sha256=jGHH20ehVL8twFNTrfYiI7dOm1kcdZLFn31iLERfp-E,3625606
1
+ gam/__init__.py,sha256=eQm09vyLeuYY4iZZEbxoD60q7RbJbimSYPH4ErnAwv0,3625714
2
2
  gam/__main__.py,sha256=VwEYS7a9vYQPbT6iLduMOoVUJ6p4R-HZgerZQmM1NpE,1307
3
3
  gam/cacerts.pem,sha256=DUsVo2XlFYwfkhe3gnxa-Km4Z4noz74hSApXwTT-nQE,44344
4
4
  gam/cbcm-v1.1beta1.json,sha256=xO5XloCQQULmPbFBx5bckdqmbLFQ7sJ2TImhE1ysDIY,19439
@@ -47,8 +47,8 @@ gam/gdata/apps/audit/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrK
47
47
  gam/gdata/apps/audit/service.py,sha256=Z1eueThcNeVUMWP1DRWc_DGHrJCiJI8W_xj6L-cqu-Q,9658
48
48
  gam/gdata/apps/contacts/__init__.py,sha256=Um6zgIkiahZns7yAEuC3pxHSMD8iciZ_EoynSLoYPfU,30463
49
49
  gam/gdata/apps/contacts/service.py,sha256=5lNb-Ii1Gyek6ePFji3kyoYtCBc8CuJTwagx2BL2o14,15684
50
- gam7-7.27.0.dist-info/METADATA,sha256=tQM_yG7zU9QVIzkevtF7YQq79yRcs90PsjdlHeDnufs,3093
51
- gam7-7.27.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
52
- gam7-7.27.0.dist-info/entry_points.txt,sha256=HVUM5J7dA8YwvJfG30jiLefR19ExMs387TWugWd9sf4,42
53
- gam7-7.27.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
54
- gam7-7.27.0.dist-info/RECORD,,
50
+ gam7-7.27.1.dist-info/METADATA,sha256=0Z9A1tL--zNCZuYz8Lkec0dxYMpTkQQQHVWYNwKftGs,3093
51
+ gam7-7.27.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
52
+ gam7-7.27.1.dist-info/entry_points.txt,sha256=HVUM5J7dA8YwvJfG30jiLefR19ExMs387TWugWd9sf4,42
53
+ gam7-7.27.1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
54
+ gam7-7.27.1.dist-info/RECORD,,
File without changes