ifstate 1.8.3__tar.gz → 1.8.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. {ifstate-1.8.3 → ifstate-1.8.4}/PKG-INFO +1 -1
  2. {ifstate-1.8.3 → ifstate-1.8.4}/ifstate.egg-info/PKG-INFO +1 -1
  3. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/__init__.py +1 -1
  4. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/log.py +1 -6
  5. {ifstate-1.8.3 → ifstate-1.8.4}/LICENSE +0 -0
  6. {ifstate-1.8.3 → ifstate-1.8.4}/README.md +0 -0
  7. {ifstate-1.8.3 → ifstate-1.8.4}/ifstate/__init__.py +0 -0
  8. {ifstate-1.8.3 → ifstate-1.8.4}/ifstate/ifstate.py +0 -0
  9. {ifstate-1.8.3 → ifstate-1.8.4}/ifstate/shell.py +0 -0
  10. {ifstate-1.8.3 → ifstate-1.8.4}/ifstate.egg-info/SOURCES.txt +0 -0
  11. {ifstate-1.8.3 → ifstate-1.8.4}/ifstate.egg-info/dependency_links.txt +0 -0
  12. {ifstate-1.8.3 → ifstate-1.8.4}/ifstate.egg-info/entry_points.txt +0 -0
  13. {ifstate-1.8.3 → ifstate-1.8.4}/ifstate.egg-info/requires.txt +0 -0
  14. {ifstate-1.8.3 → ifstate-1.8.4}/ifstate.egg-info/top_level.txt +0 -0
  15. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/address/__init__.py +0 -0
  16. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/bpf/__init__.py +0 -0
  17. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/bpf/ctypes.py +0 -0
  18. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/bpf/map.py +0 -0
  19. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/brport/__init__.py +0 -0
  20. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/exception.py +0 -0
  21. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/link/__init__.py +0 -0
  22. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/link/base.py +0 -0
  23. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/link/physical.py +0 -0
  24. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/link/tun.py +0 -0
  25. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/link/veth.py +0 -0
  26. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/neighbour/__init__.py +0 -0
  27. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/parser/__init__.py +0 -0
  28. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/parser/base.py +0 -0
  29. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/parser/yaml.py +0 -0
  30. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/routing/__init__.py +0 -0
  31. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/sysctl/__init__.py +0 -0
  32. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/tc/__init__.py +0 -0
  33. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/util.py +0 -0
  34. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/wireguard/__init__.py +0 -0
  35. {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/xdp/__init__.py +0 -0
  36. {ifstate-1.8.3 → ifstate-1.8.4}/schema/ifstate.conf.schema.json +0 -0
  37. {ifstate-1.8.3 → ifstate-1.8.4}/setup.cfg +0 -0
  38. {ifstate-1.8.3 → ifstate-1.8.4}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ifstate
3
- Version: 1.8.3
3
+ Version: 1.8.4
4
4
  Summary: Manage host interface settings in a declarative manner
5
5
  Home-page: https://ifstate.net/
6
6
  Author: Thomas Liske
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ifstate
3
- Version: 1.8.3
3
+ Version: 1.8.4
4
4
  Summary: Manage host interface settings in a declarative manner
5
5
  Home-page: https://ifstate.net/
6
6
  Author: Thomas Liske
@@ -43,7 +43,7 @@ import json
43
43
  import errno
44
44
  import logging
45
45
 
46
- __version__ = "1.8.3"
46
+ __version__ = "1.8.4"
47
47
 
48
48
 
49
49
  class IfState():
@@ -7,12 +7,7 @@ import sys
7
7
  logger = logging.getLogger('ifstate')
8
8
  logger.propagate = False
9
9
 
10
- formatter = logging.Formatter('%(bol)s%(prefix)s%(style)s%(message)s%(eol)s', defaults={
11
- 'bol': '',
12
- 'eol': '',
13
- 'prefix': '',
14
- })
15
-
10
+ formatter = logging.Formatter('%(bol)s%(prefix)s%(style)s%(message)s%(eol)s')
16
11
 
17
12
  class IfStateLogFilter(logging.Filter):
18
13
  def __init__(self, is_terminal):
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes