mirror of
https://github.com/craigerl/aprsd.git
synced 2026-08-16 00:23:34 -04:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 71cd7e0ab5 | |||
| d485f484ec | |||
| f810c02d5d |
@@ -1,9 +1,16 @@
|
||||
CHANGES
|
||||
=======
|
||||
|
||||
v3.3.2
|
||||
------
|
||||
|
||||
* Remove warning during sample-config
|
||||
* Removed print in utils
|
||||
|
||||
v3.3.1
|
||||
------
|
||||
|
||||
* Updates for 3.3.1
|
||||
* Fixed failure with fetch-stats
|
||||
* Fixed problem with list-plugins
|
||||
|
||||
|
||||
@@ -145,7 +145,6 @@ def sample_config(ctx):
|
||||
if not sys.argv[1:]:
|
||||
raise SystemExit
|
||||
raise
|
||||
LOG.warning(conf.namespace)
|
||||
generator.generate(conf)
|
||||
return
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ from .ring_buffer import RingBuffer # noqa: F401
|
||||
if sys.version_info.major == 3 and sys.version_info.minor >= 3:
|
||||
from collections.abc import MutableMapping
|
||||
else:
|
||||
from collections import MutableMapping
|
||||
from collections.abc import MutableMapping
|
||||
|
||||
|
||||
def env(*vars, **kwargs):
|
||||
@@ -136,7 +136,6 @@ def parse_delta_str(s):
|
||||
|
||||
def load_entry_points(group):
|
||||
"""Load all extensions registered to the given entry point group"""
|
||||
print(f"Loading extensions for group {group}")
|
||||
try:
|
||||
import importlib_metadata
|
||||
except ImportError:
|
||||
|
||||
Reference in New Issue
Block a user