diff --git a/src/gam.py b/src/gam.py index 6c3ee082..af676706 100755 --- a/src/gam.py +++ b/src/gam.py @@ -5662,6 +5662,9 @@ def doCreateOrg(): elif sys.argv[i].lower() == u'noinherit': body[u'blockInheritance'] = True i += 1 + elif sys.argv[i].lower() == u'inherit': + body[u'blockInheritance'] = False + i += 1 else: print u'ERROR: %s is not a valid argument for "gam create org"' % sys.argv[i] sys.exit(2)