Skip to content

Commit 0bbf94b

Browse files
committed
Fix reraising for Python 2
1 parent 523370d commit 0bbf94b

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
@@ -454,7 +454,7 @@ def resolve_or_error(
454454
info.parent_type.name, info.field_name
455455
)
456456
)
457-
e.stack = sys.exc_info()[2] # type: ignore
457+
e.stack = sys.exc_info()[2] # type: ignore
458458
return e
459459

460460

0 commit comments

Comments
 (0)