@@ -71,17 +71,19 @@ class bdist(Command):
7171 default_format = {'posix' : 'gztar' , 'nt' : 'zip' }
7272
7373 # Define commands in preferred order for the --help-formats option
74- format_commands = ListCompat ({
75- 'rpm' : ('bdist_rpm' , "RPM distribution" ),
76- 'gztar' : ('bdist_dumb' , "gzip'ed tar file" ),
77- 'bztar' : ('bdist_dumb' , "bzip2'ed tar file" ),
78- 'xztar' : ('bdist_dumb' , "xz'ed tar file" ),
79- 'ztar' : ('bdist_dumb' , "compressed tar file" ),
80- 'tar' : ('bdist_dumb' , "tar file" ),
81- 'wininst' : ('bdist_wininst' , "Windows executable installer" ),
82- 'zip' : ('bdist_dumb' , "ZIP file" ),
83- 'msi' : ('bdist_msi' , "Microsoft Installer" ),
84- })
74+ format_commands = ListCompat (
75+ {
76+ 'rpm' : ('bdist_rpm' , "RPM distribution" ),
77+ 'gztar' : ('bdist_dumb' , "gzip'ed tar file" ),
78+ 'bztar' : ('bdist_dumb' , "bzip2'ed tar file" ),
79+ 'xztar' : ('bdist_dumb' , "xz'ed tar file" ),
80+ 'ztar' : ('bdist_dumb' , "compressed tar file" ),
81+ 'tar' : ('bdist_dumb' , "tar file" ),
82+ 'wininst' : ('bdist_wininst' , "Windows executable installer" ),
83+ 'zip' : ('bdist_dumb' , "ZIP file" ),
84+ 'msi' : ('bdist_msi' , "Microsoft Installer" ),
85+ }
86+ )
8587
8688 # for compatibility until Setuptools references only format_commands
8789 format_command = format_commands
0 commit comments