8000 Merge pull request #42 from jeffcasavant/fix_props_dict · wdbetts/FuelSDK-Python@b46ad38 · GitHub
[go: up one dir, main page]

Skip to content

Commit b46ad38

Browse files
committed
Merge pull request salesforce-marketingcloud#42 from jeffcasavant/fix_props_dict
Fix props dict
2 parents 8b2e94a + 1cbca34 commit b46ad38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FuelSDK/rest.py

Lines changed: 1 addition & 1 deletion
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)
0