# HG changeset patch # User greg # Date 1626379365 0 # Node ID 090e2594e4df1e35850df32ed93a0d6d7925d589 # Parent 9fce688a1e91c309c54342a46e72c16040e2a1c2 Uploaded diff -r 9fce688a1e91 -r 090e2594e4df validate_affy_metadata.py --- a/validate_affy_metadata.py Wed Nov 11 18:27:41 2020 +0000 +++ b/validate_affy_metadata.py Thu Jul 15 20:02:45 2021 +0000 @@ -59,7 +59,7 @@ if not (VALID_EMAIL_RE.match(email)): return add_error_msg(accumulated_msgs, "Line %d contains an invalid email address (%s). " % (line_no, email)) elif len(email) > EMAIL_MAX_LEN: - return add_error_msg(accumulated_msgs, "Line %d contains an email address (%) that is longer than the maximum length, %d characters." % (line_no, email)) + return add_error_msg(accumulated_msgs, "Line %d contains an email address (%s) that is longer than the maximum length, %d characters." % (line_no, email, EMAIL_MAX_LEN)) return accumulated_msgs