Update of /cvsroot/pgpius/pius
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3091
Modified Files:
pius pius.spec
Log Message:
- Fix typo in exception name
- Add newline between keys
- bump version
Signed-off-by: Phil Dibowitz <ph...@ip...>
Index: pius.spec
===================================================================
RCS file: /cvsroot/pgpius/pius/pius.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- pius.spec 22 Apr 2009 14:18:13 -0000 1.4
+++ pius.spec 26 Apr 2009 14:15:59 -0000 1.5
@@ -2,7 +2,7 @@
# $Id$
%define name pius
-%define version 2.0.2
+%define version 2.0.3
%define release 1
Name: %{name}
Index: pius
===================================================================
RCS file: /cvsroot/pgpius/pius/pius,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- pius 22 Apr 2009 14:18:13 -0000 1.13
+++ pius 26 Apr 2009 14:15:59 -0000 1.14
@@ -33,7 +33,7 @@
import subprocess
import sys
-VERSION = '2.0.2'
+VERSION = '2.0.3'
DEBUG_ON = False
MODE_INTERACTIVE = 0
@@ -934,7 +934,7 @@
try:
self.encrypt_and_sign_file(tmpfile, signed_tmpfile, keyid)
except EncryptionKeyError:
- raise EncyptionKeyError
+ raise EncryptionKeyError
# Create the version part of the PGP/Mime encryption
pgp_ver = MIMEBase.MIMEBase('application', 'pgp-encrypted')
@@ -1288,6 +1288,7 @@
continue
print 'Signing all UIDs on key %s' % key
signer.sign_all_uids(key)
+ print ''
# If the user asked, import the keys
if options.import_keyring:
|