Fix bug in recent change to logging code.

mode is not computed in dry_run mode, so it can't be included in the
log message.
This commit is contained in:
Jeremy Hylton 2002-06-04 20:30:10 +00:00
parent a2f9989c1a
commit e6f40ea4b6

View file

@ -49,7 +49,7 @@ class install_scripts (Command):
# all the scripts we just installed.
for file in self.get_outputs():
if self.dry_run:
log.info("changing mode of %s to %o", file, mode)
log.info("changing mode of %s", file)
else:
mode = ((os.stat(file)[ST_MODE]) | 0111) & 07777
log.info("changing mode of %s to %o", file, mode)