re-organized a couple lines of code
authorAndrew Engelbrecht <sudoman@ninthfloor.org>
Sun, 27 Jul 2014 05:44:25 +0000 (01:44 -0400)
committerAndrew Engelbrecht <sudoman@ninthfloor.org>
Mon, 7 Dec 2015 17:46:47 +0000 (12:46 -0500)
this order of execution is more logical

edward-bot

index 1ca0f9b7a13c050f8fde632085eac4c318d89989..de03d4c7750080dfdb46155315e1c4b14d65d613 100755 (executable)
@@ -108,7 +108,10 @@ def print_decrypted (message):
 def print_sig (sig):
 
         fprint = sig.fpr
+        fprint_short = re.search("[0-9A-Fa-f]{32}([0-9A-Fa-f]{8})", fprint).groups()[0]
+
         timestamp = time.localtime(sig.timestamp)
+        date = time.strftime("%a %d %b %Y %I:%M:%S %p %Z", timestamp)
 
         g = gpgme.Context()
         key = g.get_key(fprint)
@@ -122,9 +125,6 @@ def print_sig (sig):
         e_addr = key.uids[0].email
         comment = key.uids[0].comment
 
-        date = time.strftime("%a %d %b %Y %I:%M:%S %p %Z", timestamp)
-        fprint_short = re.search("[0-9A-Fa-f]{32}([0-9A-Fa-f]{8})", fprint).groups()[0]
-
         # this section needs some work. signature summary, validity, status,
         # and wrong_key_usage all complicate the picture. their enum/#define
         # values overlap, which makes things more complicated.
@@ -138,6 +138,7 @@ def print_sig (sig):
         else:
             status = "BAD Signature "
 
+
         print("Signature Made " + date + " using key ID " + fprint_short)
         print(status + "from " + name + " (" + comment + ") <" \
                 + e_addr + ">")