Whilespace normalization (reindint.py).
diff --git a/Lib/setuptools/command/rotate.py b/Lib/setuptools/command/rotate.py
index 11b6eae..8aab312 100755
--- a/Lib/setuptools/command/rotate.py
+++ b/Lib/setuptools/command/rotate.py
@@ -28,7 +28,7 @@
"(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 @@
log.info("Deleting %s", f)
if not self.dry_run:
os.unlink(f)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-