From 2d4352ce1944f251b00b9e54af29d4f673a5dbad Mon Sep 17 00:00:00 2001 From: heavenshell Date: Fri, 6 Mar 2015 23:53:53 +0900 Subject: [PATCH] Fix pep8 violation. --- mackerel/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mackerel/client.py b/mackerel/client.py index cf0d192..73e7417 100644 --- a/mackerel/client.py +++ b/mackerel/client.py @@ -68,7 +68,7 @@ def retire_host(self, host_id): :param host_id: Host id """ - uri = '/api/v0/hosts/{0}/retire'.format(host_id) + uri = '/api/v0/hosts/{0}/retire'.format(host_id) headers = {'Content-Type': 'application/json'} data = self._request(uri, method='POST', headers=headers)