diff --git a/Lib/distutils/core.py b/Lib/distutils/core.py index c9ccd794edb8..23fc3ccad073 100644 --- a/Lib/distutils/core.py +++ b/Lib/distutils/core.py @@ -849,7 +849,7 @@ def make_file (self, infiles, outfile, func, args, # If 'outfile' must be regenerated (either because it doesn't # exist, is out-of-date, or the 'force' flag is true) then # perform the action that presumably regenerates it - if self.force or newer_group (infiles, outfile): + if self.force or util.newer_group (infiles, outfile): self.execute (func, args, exec_msg, level) # Otherwise, print the "skip" message