File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -511,20 +511,20 @@ env = Environment(variables=env_vars, **envDict)
511511del envDict
512512
513513def fatal_error (env , msg , * args ):
514- print msg .format (* args )
514+ print ( msg .format (* args ) )
515515 Exit (1 )
516516
517517def conf_error (env , msg , * args ):
518- print msg .format (* args )
519- print "See {0} for details" .format (env ['CONFIGURELOG' ].abspath )
518+ print ( msg .format (* args ) )
519+ print ( "See {0} for details" .format (env ['CONFIGURELOG' ].abspath ) )
520520
521521 Exit (1 )
522522
523523env .AddMethod (fatal_error , 'FatalError' )
524524env .AddMethod (conf_error , 'ConfError' )
525525
526526if has_option ('variables-help' ):
527- print env_vars .GenerateHelpText (env )
527+ print ( env_vars .GenerateHelpText (env ) )
528528 Exit (0 )
529529
530530unknown_vars = env_vars .UnknownVariables ()
You can’t perform that action at this time.
0 commit comments