From 7486770bdc2e9670bb803ee064d08708ddcc55b7 Mon Sep 17 00:00:00 2001 From: Hemna Date: Thu, 14 Jan 2021 15:44:07 -0500 Subject: [PATCH] Fixed main server client initialization This fixes the usage of the singleton client class which houses/creates the aprslib client. We were getting multiple logins, now we get one. --- aprsd/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aprsd/main.py b/aprsd/main.py index 60dd93b..0f19016 100644 --- a/aprsd/main.py +++ b/aprsd/main.py @@ -430,7 +430,7 @@ def server( plugin_manager.setup_plugins() try: cl = client.Client(config) - cl.setup_connection() + cl.client except LoginError: sys.exit(-1)