jaymzh / pius

PGP Individual User Signer
Other
97 stars 25 forks source link

Fix output of keys in verbose mode #15

Closed tresni closed 9 years ago

tresni commented 9 years ago

-v wasn't outputting the key if there was only one. range(1, len(uids)) skips index 0. Using for uid in uids should always give the correct results.

jaymzh commented 9 years ago

Wow, that was some horrible code, I have no idea what I was thinking. Thanks for fixing.