[Python-checkins] python/dist/src/Lib/distutils/command upload.py, 1.4, 1.5

loewis at users.sourceforge.net loewis at users.sourceforge.net
Wed Mar 23 00:02:57 CET 2005


Update of /cvsroot/python/python/dist/src/Lib/distutils/command
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13241

Modified Files:
	upload.py 
Log Message:
Make the signature detached.


Index: upload.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/upload.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- upload.py	22 Mar 2005 20:32:41 -0000	1.4
+++ upload.py	22 Mar 2005 23:02:54 -0000	1.5
@@ -67,7 +67,7 @@
     def upload_file(self, command, filename):
         # Sign if requested
         if self.sign:
-            spawn(("gpg", "--sign",  "-a", filename),
+            spawn(("gpg", "--detach-sign", "-a", filename),
                   dry_run=self.dry_run)
 
         # Fill in the data



More information about the Python-checkins mailing list