From: Greg Ward Date: Sat, 23 Oct 1999 19:06:56 +0000 (+0000) Subject: Qualified use of 'newer_group' function. X-Git-Tag: v1.6a1~802 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=346e320c6e53f0429900a4762ad495784ee3cc3d;p=thirdparty%2FPython%2Fcpython.git Qualified use of 'newer_group' function. --- 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 @@ class Command: # 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