Skip to content

Commit e875cef

Browse files
authored
Merge pull request ej2#192 from alanyee/patch-1
Update README.md
2 parents 992d0f8 + 1a543a5 commit e875cef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,14 +171,14 @@ Review results for batch operation:
171171

172172
# successes is a list of objects that were successfully updated
173173
for obj in results.successes:
174-
print "Updated " + obj.DisplayName
174+
print("Updated " + obj.DisplayName)
175175

176176
# faults contains list of failed operations and associated errors
177177
for fault in results.faults:
178-
print "Operation failed on " + fault.original_object.DisplayName
178+
print("Operation failed on " + fault.original_object.DisplayName)
179179

180180
for error in fault.Error:
181-
print "Error " + error.Message
181+
print("Error " + error.Message)
182182

183183
Change Data Capture
184184
-----------------------

0 commit comments

Comments
 (0)