Skip to content

Commit

Permalink
use double quotes instead of single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
CaselIT committed Sep 26, 2018
1 parent a55c796 commit db99ca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphql/execution/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def get_argument_values(self, field_def, field_ast):

def report_error(self, error, traceback=None):
# type: (Exception, Optional[TracebackType]) -> None
logger.error('%s', error, exc_info=(type(error), error, getattr(error, 'stack', None) or traceback))
logger.error("%s", error, exc_info=(type(error), error, getattr(error, "stack", None) or traceback))
self.errors.append(error)

def get_sub_fields(self, return_type, field_asts):
Expand Down

0 comments on commit db99ca0

Please sign in to comment.