[pius-commit] pius pius,1.23,1.24
Brought to you by:
jaymzh
|
From: Phil D. <ja...@us...> - 2010-03-01 15:06:42
|
Update of /cvsroot/pgpius/pius In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv30562 Modified Files: pius Log Message: sort sanely. Index: pius =================================================================== RCS file: /cvsroot/pgpius/pius/pius,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- pius 27 Feb 2010 16:03:05 -0000 1.23 +++ pius 1 Mar 2010 15:06:22 -0000 1.24 @@ -239,12 +239,7 @@ gpg.close() # sort the list - keylist = key_map.keys() - keylist.sort() - keyids = [] - for name in keylist: - keyids.append(key_map[name]) - + keyids = [ i[1] for i in sorted(key_map.items())] return keyids def check_fingerprint(self, key): |