Commit 53c31a5f authored by Jim Fulton's avatar Jim Fulton

Need to wrap filter call in list because we can't user an irritator as package metadata.

parent 6af2a02d
......@@ -131,7 +131,7 @@ setup(name="ZODB",
license = "ZPL 2.1",
platforms = ["any"],
description = doclines[0],
classifiers = filter(None, classifiers.split("\n")),
classifiers = list(filter(None, classifiers.split("\n"))),
long_description = long_description,
test_suite="__main__.alltests", # to support "setup.py test"
tests_require = tests_require,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment