]> granicus.if.org Git - python/commitdiff
Qualified use of 'newer_group' function.
authorGreg Ward <gward@python.net>
Sat, 23 Oct 1999 19:06:56 +0000 (19:06 +0000)
committerGreg Ward <gward@python.net>
Sat, 23 Oct 1999 19:06:56 +0000 (19:06 +0000)
Lib/distutils/core.py

index c9ccd794edb8fecf925e740584e3f8208875e6fc..23fc3ccad073378c52bad06bbe73278b192dfcfa 100644 (file)
@@ -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