diff options
author | Greg Ward <gward@python.net> | 1999-10-23 19:06:56 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 1999-10-23 19:06:56 (GMT) |
commit | 346e320c6e53f0429900a4762ad495784ee3cc3d (patch) | |
tree | 87df2efa229dd7b1a3209acd703dea9daebe7e8a /Lib/distutils/core.py | |
parent | 6bad86462b7b433d7fe51e4fde5e65e9a61fd375 (diff) | |
download | cpython-346e320c6e53f0429900a4762ad495784ee3cc3d.zip cpython-346e320c6e53f0429900a4762ad495784ee3cc3d.tar.gz cpython-346e320c6e53f0429900a4762ad495784ee3cc3d.tar.bz2 |
Qualified use of 'newer_group' function.
Diffstat (limited to 'Lib/distutils/core.py')
-rw-r--r-- | Lib/distutils/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/core.py b/Lib/distutils/core.py index c9ccd79..23fc3cc 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 |