using log.warn for sys.stderr
diff --git a/Lib/distutils/cmd.py b/Lib/distutils/cmd.py
index 012fca1..dfcbe23 100644
--- a/Lib/distutils/cmd.py
+++ b/Lib/distutils/cmd.py
@@ -352,9 +352,8 @@
# -- External world manipulation -----------------------------------
def warn (self, msg):
- sys.stderr.write("warning: %s: %s\n" %
- (self.get_command_name(), msg))
-
+ log.warn("warning: %s: %s\n" %
+ (self.get_command_name(), msg))
def execute (self, func, args, msg=None, level=1):
util.execute(func, args, msg, dry_run=self.dry_run)