[pius-commit] pius Changelog,1.1.2.7,1.1.2.8 pius,1.7.2.6,1.7.2.7
Brought to you by:
jaymzh
|
From: Phil D. <ja...@us...> - 2009-02-28 20:50:00
|
Update of /cvsroot/pgpius/pius In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv16809 Modified Files: Tag: pius_2_x_branch Changelog pius Log Message: I can reproduce this outside of pius, but some interaction between python and subprocess and gpg gets confused after the first key in pius2 and thinks that gpg --fingerprint exits with 2 even when running that same command works otherwise. Adding the quiet options to that commandline seems to solve the problem. pius: - Add quiet options to --fingerprint command line - Bump version Changelog: - Add 2.0.1 data Index: pius =================================================================== RCS file: /cvsroot/pgpius/pius/pius,v retrieving revision 1.7.2.6 retrieving revision 1.7.2.7 diff -u -d -r1.7.2.6 -r1.7.2.7 --- pius 7 Feb 2009 23:05:43 -0000 1.7.2.6 +++ pius 28 Feb 2009 20:49:55 -0000 1.7.2.7 @@ -33,7 +33,7 @@ import subprocess import sys -VERSION = '2.0.0' +VERSION = '2.0.1' DEBUG_ON = False MODE_INTERACTIVE = 0 @@ -232,8 +232,8 @@ def check_fingerprint(self, key): '''Prompt the user to see if they have verified this fingerprint.''' - cmd = ('%s --no-default-keyring --keyring %s --fingerprint %s' - % (self.gpg, self.keyring, key)) + cmd = ('%s %s --no-default-keyring --keyring %s --fingerprint %s' + % (self.gpg, self.gpg_quiet_opts, self.keyring, key)) # Note we attach stderr to a pipe so it won't print errors to the terminal # which it does even if stderr=None debug(cmd) Index: Changelog =================================================================== RCS file: /cvsroot/pgpius/pius/Changelog,v retrieving revision 1.1.2.7 retrieving revision 1.1.2.8 diff -u -d -r1.1.2.7 -r1.1.2.8 --- Changelog 7 Feb 2009 23:23:59 -0000 1.1.2.7 +++ Changelog 28 Feb 2009 20:49:54 -0000 1.1.2.8 @@ -1,3 +1,8 @@ +2.0.1 +Released: 02/28/09 +ph...@ip... +- Fix bug where pius would occasionally report a good key as bad + 2.0.0 Released: 02/07/09 ph...@ip... |