diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-04-18 17:32:12 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-04-18 17:32:12 +0000 |
commit | 584b0e0c3d27dc6b576366368bf7ca2f60e69e7c (patch) | |
tree | f2e33dbae88a59b367819920a5c4a2260f080788 /Lib/setuptools/command/rotate.py | |
parent | 17a35f906c29e71510d749283b381d95a5de0316 (diff) | |
download | cpython-git-584b0e0c3d27dc6b576366368bf7ca2f60e69e7c.tar.gz |
Whilespace normalization (reindint.py).
Diffstat (limited to 'Lib/setuptools/command/rotate.py')
-rwxr-xr-x | Lib/setuptools/command/rotate.py | 27 |
1 files changed, 1 insertions, 26 deletions
diff --git a/Lib/setuptools/command/rotate.py b/Lib/setuptools/command/rotate.py index 11b6eae82b..8aab312ce1 100755 --- a/Lib/setuptools/command/rotate.py +++ b/Lib/setuptools/command/rotate.py @@ -28,7 +28,7 @@ class rotate(Command): "(e.g. '.zip' or '.egg')" ) if self.keep is None: - raise DistutilsOptionError("Must specify number of files to keep") + raise DistutilsOptionError("Must specify number of files to keep") try: self.keep = int(self.keep) except ValueError: @@ -55,28 +55,3 @@ class rotate(Command): log.info("Deleting %s", f) if not self.dry_run: os.unlink(f) - - - - - - - - - - - - - - - - - - - - - - - - - |