This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author giampaolo.rodola
Recipients giampaolo.rodola
Date 2008-01-21.20:43:30
SpamBayes Score 0.016130542
Marked as misclassified No
Message-id <1200948212.05.0.299370220663.issue1885@psf.upfronthosting.co.za>
In-reply-to
Content
Steps to reproduce the problem:
1: Run "python setup.py sdist --formats=gztar,tar".
2. dist directory now contains "module.gztar" and "module.tar" files
as expected.
3: Run "python setup.py sdist --formats=tar,gztar".
4. dist directory now contains only "module.gztar" file.

Reason:
Since for every argument specified in "--formats" option a new .tar file
is created every time by using the UNIX tar utility, the .tar file is
removed/overwritten when creating subsequent archives.
History
Date User Action Args
2008-01-21 20:43:32giampaolo.rodolasetspambayes_score: 0.0161305 -> 0.016130542
recipients: + giampaolo.rodola
2008-01-21 20:43:32giampaolo.rodolasetspambayes_score: 0.0161305 -> 0.0161305
messageid: <1200948212.05.0.299370220663.issue1885@psf.upfronthosting.co.za>
2008-01-21 20:43:30giampaolo.rodolalinkissue1885 messages
2008-01-21 20:43:30giampaolo.rodolacreate