summaryrefslogtreecommitdiff
path: root/src/connection.rs
diff options
context:
space:
mode:
authortom barrett <spalf0@gmail.com>2018-02-26 08:51:08 -0600
committertom barrett <spalf0@gmail.com>2018-02-26 08:51:08 -0600
commitc14dcf1998f5ba1ffea813da4f793fc3bde8c2b7 (patch)
treef650e9bdf008a785b4627db04446c717f530e7c5 /src/connection.rs
parent6634f73a6768f61f928d51941be5e970e6011f07 (diff)
-figured out way to deserialize using serde_erased
Diffstat (limited to 'src/connection.rs')
-rw-r--r--src/connection.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection.rs b/src/connection.rs
index 59031c6..9cf7923 100644
--- a/src/connection.rs
+++ b/src/connection.rs
@@ -92,7 +92,7 @@ impl Connection {
let mut send = String::new();
for mass in within_range {
send.push_str(&mass.serialize());
- send.push_str(",");
+ send.push_str(";");
}
send.push_str("\n");
match self.stream.write(send.as_bytes()) {