From 5b7e9d76f39dbf63573519c178835f72e5a5027a Mon Sep 17 00:00:00 2001 From: Collin Winter Date: Thu, 30 Aug 2007 03:52:21 +0000 Subject: General cleanup, raise normalization in Lib/distutils. --- Lib/distutils/command/clean.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'Lib/distutils/command/clean.py') diff --git a/Lib/distutils/command/clean.py b/Lib/distutils/command/clean.py index 02189c531a8..ae1d22c376f 100644 --- a/Lib/distutils/command/clean.py +++ b/Lib/distutils/command/clean.py @@ -4,8 +4,6 @@ Implements the Distutils 'clean' command.""" # contributed by Bastian Kleineidam , added 2000-03-18 -# This module should be kept compatible with Python 2.1. - __revision__ = "$Id$" import os @@ -13,7 +11,7 @@ from distutils.core import Command from distutils.dir_util import remove_tree from distutils import log -class clean (Command): +class clean(Command): description = "clean up temporary files from 'build' command" user_options = [ @@ -78,5 +76,3 @@ class clean (Command): log.info("removing '%s'", self.build_base) except OSError: pass - -# class clean -- cgit v1.2.3