Fix etcd_return pylint error

This commit is contained in:
rallytime 2015-02-05 16:42:41 -07:00
parent 79b3f0d7d0
commit e4d8db4160

View File

@ -116,7 +116,7 @@ def get_load(jid):
Return the load data that marks a specified jid
'''
client, path = _get_conn(__opts__)
return json.loads(client.get('/'.join(path, 'jobs', jid, '.load.p')))
return json.loads(client.get('/'.join((path, 'jobs', jid, '.load.p'))))
def get_jid(jid):