Index: Lib/distutils/command/register.py =================================================================== --- Lib/distutils/command/register.py (revision 52205) +++ Lib/distutils/command/register.py (working copy) @@ -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")