Skip to content

Commit

Permalink
Fixes #368
Browse files Browse the repository at this point in the history
  • Loading branch information
James McKinney committed Jan 23, 2016
1 parent 935458f commit ad99262
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csvkit/grep.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,5 +119,5 @@ def __init__(self, pattern):
self.pattern = pattern

def __call__(self, arg):
return self.pattern.match(arg)
return self.pattern.search(arg)

0 comments on commit ad99262

Please sign in to comment.