[Bug #1545341] Allow 'classifier' parameter to be a tuple as well as a list. Will backport.
diff --git a/Lib/distutils/command/register.py b/Lib/distutils/command/register.py
index dec9aa2..5fcc8d2 100644
--- a/Lib/distutils/command/register.py
+++ b/Lib/distutils/command/register.py
@@ -251,7 +251,7 @@
body = StringIO.StringIO()
for key, value in data.items():
# handle multiple entries for the same name
- if type(value) != type([]):
+ if type(value) not in (type([]), type( () )):
value = [value]
for value in value:
value = unicode(value).encode("utf-8")