1
0
mirror of https://github.com/craigerl/aprsd.git synced 2026-08-19 10:13:44 -04:00

Compare commits

...

4 Commits

Author SHA1 Message Date
hemna 8e0de9c5ac Fix for sample-config warning
This patch fixes a small issue with the sample-config command
outputting a warning during generation.
2024-03-27 10:28:42 -04:00
hemna 71cd7e0ab5 Changelog for 3.3.2 2024-03-13 13:49:11 -04:00
hemna d485f484ec Remove warning during sample-config
This patch removes a warning log during sample-config
generation
2024-03-13 13:47:01 -04:00
hemna f810c02d5d Removed print in utils
this patch removes a leftover debug print in utils.load_entry_points
that was causing sample-config output to be bogus.
2024-03-13 13:44:09 -04:00
4 changed files with 15 additions and 4 deletions
+13
View File
@@ -1,9 +1,22 @@
CHANGES CHANGES
======= =======
v3.3.3
------
* Fix for sample-config warning
v3.3.2
------
* Changelog for 3.3.2
* Remove warning during sample-config
* Removed print in utils
v3.3.1 v3.3.1
------ ------
* Updates for 3.3.1
* Fixed failure with fetch-stats * Fixed failure with fetch-stats
* Fixed problem with list-plugins * Fixed problem with list-plugins
+1 -1
View File
@@ -228,7 +228,7 @@ webchat_opts = [
] ]
registry_opts = [ registry_opts = [
cfg.StrOpt( cfg.BoolOpt(
"enabled", "enabled",
default=False, default=False,
help="Enable sending aprs registry information. This will let the " help="Enable sending aprs registry information. This will let the "
-1
View File
@@ -145,7 +145,6 @@ def sample_config(ctx):
if not sys.argv[1:]: if not sys.argv[1:]:
raise SystemExit raise SystemExit
raise raise
LOG.warning(conf.namespace)
generator.generate(conf) generator.generate(conf)
return return
+1 -2
View File
@@ -19,7 +19,7 @@ from .ring_buffer import RingBuffer # noqa: F401
if sys.version_info.major == 3 and sys.version_info.minor >= 3: if sys.version_info.major == 3 and sys.version_info.minor >= 3:
from collections.abc import MutableMapping from collections.abc import MutableMapping
else: else:
from collections import MutableMapping from collections.abc import MutableMapping
def env(*vars, **kwargs): def env(*vars, **kwargs):
@@ -136,7 +136,6 @@ def parse_delta_str(s):
def load_entry_points(group): def load_entry_points(group):
"""Load all extensions registered to the given entry point group""" """Load all extensions registered to the given entry point group"""
print(f"Loading extensions for group {group}")
try: try:
import importlib_metadata import importlib_metadata
except ImportError: except ImportError: