We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bac499a commit 1a543a5Copy full SHA for 1a543a5
README.md
@@ -171,14 +171,14 @@ Review results for batch operation:
171
172
# successes is a list of objects that were successfully updated
173
for obj in results.successes:
174
- print "Updated " + obj.DisplayName
+ print("Updated " + obj.DisplayName)
175
176
# faults contains list of failed operations and associated errors
177
for fault in results.faults:
178
- print "Operation failed on " + fault.original_object.DisplayName
+ print("Operation failed on " + fault.original_object.DisplayName)
179
180
for error in fault.Error:
181
- print "Error " + error.Message
+ print("Error " + error.Message)
182
183
Change Data Capture
184
-----------------------
0 commit comments