This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.araujo
Recipients eric.araujo, gawel, tarek
Date 2011-01-29.16:43:18
SpamBayes Score 0.004440924
Marked as misclassified No
Message-id <1296319399.55.0.317223458646.issue11038@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks for the report and fix (da2f3527ef02).  I think you wanted to use a global object to list required fields, but you defined it without using it:

_345_REQUIRED = ('Name', 'Version')
[...]
-        for attr in ('Name', 'Version', 'Home-page'):
+
+        for attr in ('Name', 'Version'):
History
Date User Action Args
2011-01-29 16:43:19eric.araujosetrecipients: + eric.araujo, tarek, gawel
2011-01-29 16:43:19eric.araujosetmessageid: <1296319399.55.0.317223458646.issue11038@psf.upfronthosting.co.za>
2011-01-29 16:43:18eric.araujolinkissue11038 messages
2011-01-29 16:43:18eric.araujocreate