Isilon/isilon_sdk_python

Examples (e.g. for NamespaceApi getacl) use invalid true/false instead of True/False names

tenortim opened this issue · 0 comments

Example doc link
Capitalization matters.

acl = true # bool | Show access control lists.
nsaccess = true # bool | Indicates that the operation is on the access point instead of the store path. (optional)

should be

acl = True # bool | Show access control lists.
nsaccess = True # bool | Indicates that the operation is on the access point instead of the store path. (optional)