Skip to content

Commit

Permalink
Fix typo in field_names list comprehension
Browse files Browse the repository at this point in the history
Fixes #81
  • Loading branch information
reidab committed Mar 11, 2018
1 parent e4ed504 commit f241ff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csvdedupe/csvdedupe.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def __init__(self):
except KeyError:
raise self.parser.error("You must provide field_names")
else :
self.field_names = [self.field_def['field']
self.field_names = [field_def['field']
for field_def in self.field_definition]

self.destructive = self.configuration.get('destructive', False)
Expand Down

0 comments on commit f241ff1

Please sign in to comment.