diff --git a/src/gam.py b/src/gam.py index 7b52abba..2d57e643 100755 --- a/src/gam.py +++ b/src/gam.py @@ -1811,8 +1811,7 @@ def convertUserIDtoEmail(uid): try: return callGAPI(cd.users(), u'get', throw_reasons=[u'notFound'], userKey=uid, fields=u'primaryEmail')[u'primaryEmail'] except googleapiclient.errors.HttpError: - print u'ERROR: no such user %s' % uid - sys.exit(3) + return u'uid:{0}'.format(uid) def doCreateDataTranfer(): dt = buildGAPIObject(u'datatransfer')