[Python-checkins] r42087 - sandbox/trunk/setuptools/setuptools/package_index.py

phillip.eby python-checkins at python.org
Tue Jan 17 19:47:56 CET 2006


Author: phillip.eby
Date: Tue Jan 17 19:47:56 2006
New Revision: 42087

Modified:
   sandbox/trunk/setuptools/setuptools/package_index.py
Log:
Fix editing error (reported by Ian Bicking).


Modified: sandbox/trunk/setuptools/setuptools/package_index.py
==============================================================================
--- sandbox/trunk/setuptools/setuptools/package_index.py	(original)
+++ sandbox/trunk/setuptools/setuptools/package_index.py	Tue Jan 17 19:47:56 2006
@@ -250,7 +250,7 @@
             "scan is required.", url
         )
 
-    def scan_all(self, msg, *args):
+    def scan_all(self, msg=None, *args):
         if self.index_url not in self.fetched_urls:
             if msg: self.warn(msg,*args)
             self.warn(


More information about the Python-checkins mailing list