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
self.output_file.write("%i rows would have been joined/reduced to %i rows after eliminating expected internal line breaks.\n"% (checker.rows_joined, checker.joins))
29
+
self.output_file.write('%i rows would have been joined/reduced to %i rows after eliminating expected internal line breaks.\n'% (checker.rows_joined, checker.joins))
30
30
else:
31
31
base,ext=splitext(self.args.file.name)
32
32
# should we preserve delimiters and other dialect args from CLI?
self.output_file.write("%i error%s logged to %s\n"% (err_count,""iferr_count==1else"s", err_filename))
50
+
self.output_file.write('%i error%s logged to %s\n'% (err_count,''iferr_count==1else's', err_filename))
51
51
else:
52
-
self.output_file.write("No errors.\n")
52
+
self.output_file.write('No errors.\n')
53
53
54
54
ifchecker.joins:
55
-
self.output_file.write("%i rows were joined/reduced to %i rows after eliminating expected internal line breaks.\n"% (checker.rows_joined, checker.joins))
55
+
self.output_file.write('%i rows were joined/reduced to %i rows after eliminating expected internal line breaks.\n'% (checker.rows_joined, checker.joins))
0 commit comments