From 2cf96f537b8fe8e3db06acb8cdb5ac8357471922 Mon Sep 17 00:00:00 2001 From: marvinmartian Date: Wed, 1 Jun 2016 08:58:02 -0600 Subject: [PATCH] Added missing comma in error block. Fixed SyntaxError caused by missing comma in error block. --- node_app/get_cert_info.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node_app/get_cert_info.js b/node_app/get_cert_info.js index 0ce4847..49c0360 100644 --- a/node_app/get_cert_info.js +++ b/node_app/get_cert_info.js @@ -142,7 +142,7 @@ function get_cert_parameters(element, index, array) { 'common_name': '' }, 'info': { - 'days_left': '??' + 'days_left': '??', 'common_name': 'Unspecified error' } }; @@ -224,4 +224,4 @@ function assert(value, desc) { } else { console.log("\033[31m "+desc+"\033[0m"); } -}; \ No newline at end of file +};