Skip to content
This repository has been archived by the owner on Mar 31, 2020. It is now read-only.

Commit

Permalink
Merge pull request #23 from pemugi/dev
Browse files Browse the repository at this point in the history
Fix a bug in AdminFeatureService class.
  • Loading branch information
achapkowski committed Dec 19, 2014
2 parents a2ea387 + 08f8973 commit 085ccbb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/arcrest/hostedservice/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ def addToDefinition(self, json_dict):
params = {
"f" : "json",
"token" : self._token,
"addToDefinition" : json_dict,
"addToDefinition" : json.dumps(json_dict),
"async" : False
}
uURL = self._url + "/addToDefinition"
Expand All @@ -779,7 +779,7 @@ def updateDefinition(self, json_dict):
params = {
"f" : "json",
"token" : self._token,
"updateDefinition" : json_dict,
"updateDefinition" : json.dumps(json_dict),
"async" : False
}
uURL = self._url + "/updateDefinition"
Expand Down Expand Up @@ -809,7 +809,7 @@ def deleteFromDefinition(self, json_dict):
params = {
"f" : "json",
"token" : self._token,
"deleteFromDefinition" : json_dict,
"deleteFromDefinition" : json.dumps(json_dict),
"async" : False
}
uURL = self._url + "/deleteFromDefinition"
Expand Down Expand Up @@ -1398,4 +1398,4 @@ def deleteFromDefinition(self, json_dict):
}
uURL = self._url + "/deleteFromDefinition"
return self._do_post(url=uURL, param_dict=params, proxy_port=self._proxy_port,
proxy_url=self._proxy_url)
proxy_url=self._proxy_url)

0 comments on commit 085ccbb

Please sign in to comment.