Prefer tuple over lists.

This commit is contained in:
Bastian Kleineidam 2013-04-02 23:23:44 +02:00
parent 181a643f43
commit 3f56cc1f2b

View file

@ -428,7 +428,7 @@ args = dict(
options = { options = {
"py2exe": py2exe_options, "py2exe": py2exe_options,
}, },
classifiers = [ classifiers = (
'Environment :: Console', 'Environment :: Console',
'Intended Audience :: End Users/Desktop', 'Intended Audience :: End Users/Desktop',
'Topic :: Multimedia :: Graphics', 'Topic :: Multimedia :: Graphics',
@ -437,7 +437,7 @@ args = dict(
'License :: OSI Approved :: GNU General Public License (GPL)', 'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python', 'Programming Language :: Python',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
], ),
) )
if __name__ == '__main__': if __name__ == '__main__':