1
0
mirror of https://github.com/craigerl/aprsd.git synced 2026-08-16 00:23:34 -04:00

Compare commits

...

2 Commits

Author SHA1 Message Date
hemna ade3c49e93 Updated Changelog 2021-11-13 10:00:40 -05:00
hemna 6fb610582d Fixed dev command missing initialization
This patch fixes a few issues when running test-plugin command.
It was missing some initialization of the stats and packets classes.
2021-11-13 09:56:19 -05:00
2 changed files with 15 additions and 1 deletions
+10
View File
@@ -1,6 +1,16 @@
CHANGES
=======
v2.5.4
------
* Fixed dev command missing initialization
v2.5.3
------
* Fix admin logging tab
v2.5.2
------
+5 -1
View File
@@ -8,7 +8,7 @@ import logging
import click
# local imports here
from aprsd import cli_helper, client, plugin
from aprsd import cli_helper, client, messaging, packets, plugin, stats
from ..aprsd import cli
@@ -80,6 +80,10 @@ def test_plugin(
if type(message) is tuple:
message = " ".join(message)
client.Client(config)
stats.APRSDStats(config)
messaging.MsgTrack(config=config)
packets.WatchList(config=config)
packets.SeenList(config=config)
pm = plugin.PluginManager(config)
if load_all: