From e2a425305b71a75ab533896415158409fd45305a Mon Sep 17 00:00:00 2001 From: Neil Smith Date: Mon, 30 Jan 2017 08:40:11 +0000 Subject: [PATCH] Fixed error handling --- dmarc_to_database | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmarc_to_database b/dmarc_to_database index fb5d458..62d6a07 100755 --- a/dmarc_to_database +++ b/dmarc_to_database @@ -170,7 +170,7 @@ def write_report(connection, cursor, report): # print(insert_string, values) cursor.execute(insert_string, values) connection.commit() - except AttributeError: + except AttributeError: pass config = configparser.ConfigParser() -- 2.34.1