From 41ca8eca9701406e256b56a786a86bd95b630283 Mon Sep 17 00:00:00 2001 From: mloebl Date: Sun, 18 Mar 2018 17:34:00 -0400 Subject: [PATCH] Update the path to the correct mqtt-aprs.cfg location --- mqtt-aprs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mqtt-aprs.py b/mqtt-aprs.py index 2ba6d88..e9c2059 100644 --- a/mqtt-aprs.py +++ b/mqtt-aprs.py @@ -27,7 +27,7 @@ from datetime import datetime, timedelta # Read the config file config = ConfigParser.RawConfigParser() # TODO: Fix path: -config.read("./mqtt-aprs.cfg") +config.read("/etc/mqtt-aprs/mqtt-aprs.cfg") # Use ConfigParser to pick out the settings DEBUG = config.getboolean("global", "debug")