We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc8d42c commit 4fc2795Copy full SHA for 4fc2795
SoftLayer/transports.py
@@ -272,9 +272,7 @@ def __call__(self, request):
272
if request.identifier is not None:
273
url_parts.append(str(request.identifier))
274
275
- # Special methods (createObject, editObject, etc) use the HTTP verb
276
- # to determine the action on the resource
277
- if request.method is not None and not is_special_method:
+ if request.method is not None:
278
url_parts.append(request.method)
279
280
url = '%s.%s' % ('/'.join(url_parts), 'json')
0 commit comments