Skip to content

Commit 1cbca34

Browse files
committed
Fix props dict
1 parent b8e87dc commit 1cbca34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FuelSDK/rest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def __init__(self, auth_stub, obj_type, props = None, search_filter = None, opti
157157

158158
if props is not None:
159159
if type(props) is dict: # If the properties is a hash, then we just want to use the keys
160-
ws_retrieveRequest.Properties = props.keys
160+
ws_retrieveRequest.Properties = props.keys()
161161
else:
162162
ws_retrieveRequest.Properties = props
163163

0 commit comments

Comments
 (0)