Skip to content

Commit

Permalink
Fix file permissions.
Browse files Browse the repository at this point in the history
  • Loading branch information
onyxfish committed Sep 14, 2011
1 parent 1605c44 commit 2434744
Show file tree
Hide file tree
Showing 8 changed files with 146 additions and 9 deletions.
2 changes: 1 addition & 1 deletion csvkit/grep.py
Expand Up @@ -12,7 +12,7 @@ class FilteringCSVReader(object):
dictionary may be strings, regular expressions, or functions. For each row in the wrapped iterator,
these values will be used as tests, and the row will only be yielded by the filter if all values pass
their corresponding tests. This behavior can be toggled so that all rows which pass any of the tests
will be yielded by specifying "any=True" in the constructor.
will be yielded by specifying "any_match=True" in the constructor.
Empty values (the blank string or None) not be tested; the value in that position will not affect whether
or not the filterint reader yields a prospective row. To test for explicitly blank, use a regular
Expand Down
Empty file modified csvkit/utilities/csvclean.py 100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion csvkit/utilities/csvgrep.py
Expand Up @@ -54,7 +54,7 @@ def main(self):
output = CSVKitWriter(self.output_file, **self.writer_kwargs)
output.writerow(column_names)

filter_reader = FilteringCSVReader(rows, header=False, patterns=patterns, inverse = self.args.inverse)
filter_reader = FilteringCSVReader(rows, header=False, patterns=patterns, inverse=self.args.inverse)

for i, row in enumerate(filter_reader):
self.input_line_number = i + 1
Expand Down
Empty file modified csvkit/utilities/csvjoin.py 100755 → 100644
Empty file.
Empty file modified csvkit/utilities/csvsql.py 100755 → 100644
Empty file.
Empty file modified csvkit/utilities/csvstat.py 100755 → 100644
Empty file.
Empty file modified csvkit/utilities/in2csv.py 100755 → 100644
Empty file.
151 changes: 144 additions & 7 deletions csvstat

Large diffs are not rendered by default.

0 comments on commit 2434744

Please sign in to comment.