From 476723fb0175f1485aaf7cd1bd7d27b96b6a40cc Mon Sep 17 00:00:00 2001
From: Matt Traudt <sirmatt@ksu.edu>
Date: Fri, 6 Apr 2018 20:37:22 -0400
Subject: [PATCH] Fix path to deploy document

---
 sbws/commands/server.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sbws/commands/server.py b/sbws/commands/server.py
index 0234f84e..675b95b7 100644
--- a/sbws/commands/server.py
+++ b/sbws/commands/server.py
@@ -131,9 +131,9 @@ def main(args, conf, log_):
 
     if len(conf['server.passwords']) < 1:
         conf_fname = os.path.join(args.directory, 'config.ini')
-        fail_hard('Sbws server needs at least one password in the section'\
-                  ' [server.passwords] in the config file in {}. See '\
-                  'doc/installing.rst for more information.'\
+        fail_hard('Sbws server needs at least one password in the section'
+                  ' [server.passwords] in the config file in {}. See '
+                  'DEPLOY.rst for more information.'
                   .format(conf_fname), log=log)
 
     server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
-- 
GitLab