summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2017-10-30 17:44:31 -0400
committerAndrew Gallant <jamslam@gmail.com>2017-10-30 17:44:31 -0400
commit6138e7495c4b64957919f69544fc1a9162755cca (patch)
tree3e7c5801fa79d9e28424e63e98c1116335fa31b4
parent4d43ebc5a8465c32362001631fde39ab01517140 (diff)
config: propagate escape config
Fixes #105
-rw-r--r--src/config.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs
index 89667f8..0539bed 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -285,6 +285,7 @@ impl Config {
.has_headers(!self.no_headers)
.quote(self.quote)
.quoting(self.quoting)
+ .escape(Some(self.escape))
.from_reader(rdr)
}