anancarv / python-artifactory

Typed interactions with the Jfrog Artifactory REST API
MIT License
55 stars 50 forks source link

Correct member-of-groups usage for access tokens #84

Closed andni233 closed 3 years ago

andni233 commented 3 years ago

The documentation suggests that group names can be ", " delimited. This works for group names that does not contain spaces.

Group names with spaces are supported. To support this we must quote the group list, as pyartifactory does. This also requires us to change group delimiter to ",". I would assume this is due to Artifactory not being able to destinguish between the delimiter space and any potential group name spaces.

Correct by using "," in combination with quoting the list.