RefactoringRope/CodeAssistServer.py

branch
eric7
changeset 390
e6848531c902
parent 389
4f53795beff0
child 392
b9b0a462123d
equal deleted inserted replaced
389:4f53795beff0 390:e6848531c902
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:

eric ide

mercurial