Fix error reporting
This commit is contained in:
parent
6036099b13
commit
b84022ef70
@ -123,7 +123,7 @@ def extract(cnt, dest=None):
|
|||||||
if dest is not None:
|
if dest is not None:
|
||||||
nsub = len([x for x in os.listdir(odest) if x.find(os.path.basename(ldest) + ".") == 0]) + 1
|
nsub = len([x for x in os.listdir(odest) if x.find(os.path.basename(ldest) + ".") == 0]) + 1
|
||||||
if nsub > 1:
|
if nsub > 1:
|
||||||
yield MailTest("This is your %i%s submission. Last submission on: %s" % (nsub, "st" if nsub == 0 else ("nd" if nsub == 1 else ("rd" if nsub == 3 else "th")), datetime.fromtimestamp(int(os.lstat(ldest).st_mtime))), -1)
|
yield MailTest("This is your %i%s submission. Last submission on: %s" % (nsub, "st" if nsub == 1 else ("nd" if nsub == 2 else ("rd" if nsub == 3 else "th")), datetime.fromtimestamp(int(os.lstat(ldest).st_mtime))), -1)
|
||||||
else:
|
else:
|
||||||
yield MailTest("This is your %i%s submission." % (nsub, "st" if nsub == 1 else ("nd" if nsub == 2 else ("rd" if nsub == 3 else "th"))), -1)
|
yield MailTest("This is your %i%s submission." % (nsub, "st" if nsub == 1 else ("nd" if nsub == 2 else ("rd" if nsub == 3 else "th"))), -1)
|
||||||
if dest != ldest:
|
if dest != ldest:
|
||||||
|
@ -18,7 +18,8 @@ def import_pubkey(key, GNUPG_DIRECTORY):
|
|||||||
yield MailTest("New PGP key successfully imported:", details=gpg_output)
|
yield MailTest("New PGP key successfully imported:", details=gpg_output)
|
||||||
yield False
|
yield False
|
||||||
else:
|
else:
|
||||||
yield MailTest("An error occurs during PGP key importation:", details=gpg_output)
|
yield MailTest("An error occurs during PGP key importation:", 1, details=gpg_output)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def assume_rfc3156(msg):
|
def assume_rfc3156(msg):
|
||||||
|
Reference in New Issue
Block a user