ImportCSV: remove debugging code

This commit is contained in:
Doug Blank 2015-08-07 11:10:29 -04:00
parent 482c2ae5b8
commit 8499a0f660

View File

@ -400,7 +400,6 @@ class CSVParser(object):
def _parse_marriage(self, line_number, row, col):
"Parse the content of a Marriage,Husband,Wife line."
marriage_ref = rd(line_number, row, col, "marriage")
import pdb; pdb.set_trace()
husband = rd(line_number, row, col, "husband")
wife = rd(line_number, row, col, "wife")
marriagedate = rd(line_number, row, col, "date")