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.
2 parents 992d0f8 + 1a543a5 commit e875cefCopy full SHA for e875cef
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