You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.rst
+7
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,10 @@
1
+
2.0.0 - Unreleased
2
+
------------------
3
+
4
+
**BACKWARDS-INCOMPATIBLE CHANGES**
5
+
6
+
* :doc:`/scripts/csvclean` now writes its output to standard output and its errors to standard error, instead of to ``basename_out.csv`` and ``basename_err.csv`` files. Consequently, it no longer supports a :code:`--dry-run` flag to output summary information like ``No errors.``, ``42 errors logged to basename_err.csv`` or ``42 rows were joined/reduced to 24 rows after eliminating expected internal line breaks.``.
Copy file name to clipboardexpand all lines: docs/scripts/csvclean.rst
+9-7
Original file line number
Diff line number
Diff line change
@@ -18,13 +18,13 @@ Note that every csvkit tool does the following:
18
18
* changes the quote character to a double-quotation mark, if the character is set with the `--quotechar` (`-q`) option
19
19
* changes the character encoding to UTF-8, if the input encoding is set with the `--encoding` (`-e`) option
20
20
21
-
Outputs [basename]_out.csv and [basename]_err.csv, the former containing all valid rows and the latter containing all error rows along with line numbers and descriptions:
21
+
All valid rows are written to standard output, and all error rows along with line numbers and descriptions are written to standard error. If there are error rows, the exit code will be 1::
0 commit comments