[Pgp-tools-commit] r612 - trunk/keyart

Aaron Toponce atoponce-guest at moszumanska.debian.org
Tue May 13 21:42:20 UTC 2014


Author: atoponce-guest
Date: 2014-05-13 21:42:20 +0000 (Tue, 13 May 2014)
New Revision: 612

Modified:
   trunk/keyart/keyart
Log:
Gah. Fix logic typo.


Modified: trunk/keyart/keyart
===================================================================
--- trunk/keyart/keyart	2014-05-13 21:40:06 UTC (rev 611)
+++ trunk/keyart/keyart	2014-05-13 21:42:20 UTC (rev 612)
@@ -11,7 +11,7 @@
     print "Usage: keyart /path/to/exported-key"
     sys.exit(1)
 
-elif not os.path.isfile(keyfile):
+if not os.path.isfile(keyfile):
     print "No such file or directory: {0}".format(keyfile)
     sys.exit(2)
 elif not os.access(keyfile, os.R_OK):




More information about the Pgp-tools-commit mailing list