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)
511
511
del envDict
512
512
513
513
def fatal_error (env , msg , * args ):
514
- print msg .format (* args )
514
+ print ( msg .format (* args ) )
515
515
Exit (1 )
516
516
517
517
def 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 ) )
520
520
521
521
Exit (1 )
522
522
523
523
env .AddMethod (fatal_error , 'FatalError' )
524
524
env .AddMethod (conf_error , 'ConfError' )
525
525
526
526
if has_option ('variables-help' ):
527
- print env_vars .GenerateHelpText (env )
527
+ print ( env_vars .GenerateHelpText (env ) )
528
528
Exit (0 )
529
529
530
530
unknown_vars = env_vars .UnknownVariables ()
You can’t perform that action at this time.
0 commit comments