senseobservationsystems / commonsense-python-lib

Library for using CommonSense API in Python applications
Apache License 2.0
4 stars 1 forks source link

Added calls for groups. #2

Closed pimnijdam closed 11 years ago

pimnijdam commented 11 years ago

Added calls for groups and included tests for them. Also added a call to delete a user. @Tubyhes please QA

Tubyhes commented 11 years ago

In various places you use '{}' in a format string. In Python 2.6 this generates errors, and since we run 2.6 on our servers, we can't have that. Could you change this to {0}, {1}, etc?

pimnijdam commented 11 years ago

@Tubyhes fixed format strings and two other errors I found.

Tubyhes commented 11 years ago

Fixed a couple of things, ready to merge now.