From 3847bcb5a66939593c29e8cec55a2a83776c4c26 Mon Sep 17 00:00:00 2001
From: Aaron Weiss <awe@pdgn.co>
Date: Sun, 18 Feb 2018 21:39:06 +0100
Subject: [PATCH] Always skip serializing config's path.

---
 src/client/data/config.rs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/client/data/config.rs b/src/client/data/config.rs
index fe2767d..5e90878 100644
--- a/src/client/data/config.rs
+++ b/src/client/data/config.rs
@@ -93,6 +93,7 @@ pub struct Config {
     /// The path that this configuration was loaded from.
     ///
     /// This should not be specified in any configuration. It will automatically be handled by the library.
+    #[serde(skip_serializing)]
     pub path: Option<PathBuf>,
 }