diff options
| author | Ed Cranford <ed.cranford@rackspace.com> | 2012-04-23 12:58:21 -0500 |
|---|---|---|
| committer | Ed Cranford <ed.cranford@rackspace.com> | 2012-05-03 16:20:39 -0500 |
| commit | 01313e56fe446ea3eaa459b0cc9dcf89c043de7d (patch) | |
| tree | 0acccff1535c8feef5fd740acbac668a59b2c23e /reddwarfclient/users.py | |
| parent | 3e92682e3a8a7a1cdeee838dfa5f82a5539beb88 (diff) | |
| download | python-troveclient-01313e56fe446ea3eaa459b0cc9dcf89c043de7d.tar.gz | |
PEP8 fixes
Diffstat (limited to 'reddwarfclient/users.py')
| -rw-r--r-- | reddwarfclient/users.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/reddwarfclient/users.py b/reddwarfclient/users.py index 2b59b68..f3a49a6 100644 --- a/reddwarfclient/users.py +++ b/reddwarfclient/users.py @@ -43,7 +43,7 @@ class Users(base.ManagerWithFind): def delete(self, instance_id, user): """Delete an existing user in the specified instance""" - url = "/instances/%s/users/%s"% (instance_id, user) + url = "/instances/%s/users/%s" % (instance_id, user) resp, body = self.api.client.delete(url) check_for_exceptions(resp, body) @@ -62,4 +62,4 @@ class Users(base.ManagerWithFind): :rtype: list of :class:`User`. """ return self._list("/instances/%s/users" % base.getid(instance), - "users")
\ No newline at end of file + "users") |
