501 @param result dictionary containing the result data |
501 @param result dictionary containing the result data |
502 @type dict |
502 @type dict |
503 """ |
503 """ |
504 if "Error" not in result: |
504 if "Error" not in result: |
505 # ignore errors silently |
505 # ignore errors silently |
506 location = result["Location"] |
506 location = result.get("Location") |
507 euuid = result["Uuid"] |
507 euuid = result["Uuid"] |
508 if location: |
508 if location: |
509 try: |
509 try: |
510 editor = self.__editors[euuid] |
510 editor = self.__editors[euuid] |
511 except KeyError: |
511 except KeyError: |