Fix typo in restful.py to pass cluster_id to api

Change-Id: I959f3c4817090971dd4deb02aeae475192ad4eac
This commit is contained in:
zhaoxinyu 2014-02-07 02:26:22 +00:00
parent 30ed130569
commit f25f992e81

View File

@ -632,5 +632,5 @@ class Client(object):
:type cluster_id: int.
"""
params = {}
params['cluser_id'] = cluster_id
params['cluster_id'] = cluster_id
return self._get('/api/dashboardlinks', params)