Skip to content

Commit 20924c9

Browse files
committed
updates
1 parent b7969f7 commit 20924c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stringComparisonFromCSV.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
with open(fileName) as csvfile:
2323
reader = csv.DictReader(csvfile)
2424
for row in reader:
25-
nameList.append(str(row['name']))
25+
nameList.append(str(row['prefLabel']))
2626

2727
f=csv.writer(open(fileName[:fileName.index('.')]+'NearMatches.csv','wb'))
2828
f.writerow(['percentage']+['name1']+['name2'])

0 commit comments

Comments
 (0)