@@ -2568,7 +2568,7 @@ def skipping_module(manager: BuildManager, line: int, caller_state: Optional[Sta
25682568 manager .errors .set_import_context (caller_state .import_context )
25692569 manager .errors .set_file (caller_state .xpath , caller_state .id )
25702570 manager .errors .report (line , 0 ,
2571- " Import of '%s' ignored" % (id ,),
2571+ ' Import of "%s" ignored' % (id ,),
25722572 severity = 'error' )
25732573 manager .errors .report (line , 0 ,
25742574 "(Using --follow-imports=error, module not passed on command line)" ,
@@ -2584,7 +2584,7 @@ def skipping_ancestor(manager: BuildManager, id: str, path: str, ancestor_for: '
25842584 # so we'd need to cache the decision.
25852585 manager .errors .set_import_context ([])
25862586 manager .errors .set_file (ancestor_for .xpath , ancestor_for .id )
2587- manager .errors .report (- 1 , - 1 , " Ancestor package '%s' ignored" % (id ,),
2587+ manager .errors .report (- 1 , - 1 , ' Ancestor package "%s" ignored' % (id ,),
25882588 severity = 'error' , only_once = True )
25892589 manager .errors .report (- 1 , - 1 ,
25902590 "(Using --follow-imports=error, submodule passed on command line)" ,
0 commit comments