Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4e983d3

Browse files
committedApr 6, 2020
Fix reraising for Python 2
1 parent 943a08e commit 4e983d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎graphql/execution/executor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ def resolve_or_error(
456456
info.parent_type.name, info.field_name
457457
)
458458
)
459-
e.stack = sys.exc_info()[2] # type: ignore
459+
e.stack = sys.exc_info()[2] # type: ignore
460460
return e
461461

462462

0 commit comments

Comments
 (0)
Please sign in to comment.