Skip to content

Commit

Permalink
Merge branch 'parser_bugfix' of github.com:/mute019/zeekctl
Browse files Browse the repository at this point in the history
* 'parser_bugfix' of github.com:/mute019/zeekctl:
  Changed the depricated SafeConfigParser attribute to ConfigParser
  • Loading branch information
ckreibich committed Dec 7, 2023
2 parents 0c4a9fa + 53561ca commit 00afdb1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2.5.0-41 | 2023-12-06 20:08:23 -0800

* Changed the depricated SafeConfigParser attribute to ConfigParser (mute019)

2.5.0-39 | 2023-11-07 19:37:51 +0100

* install: Ignore Cluster$interface deprecation (Arne Welzel, Corelight)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.0-39
2.5.0-41
2 changes: 1 addition & 1 deletion ZeekControl/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ def _get_env_var_dict(self, text):

# Parse node.cfg.
def _read_nodes(self):
config = configparser.SafeConfigParser()
config = configparser.ConfigParser()
fname = self.nodecfg
try:
if not config.read(fname):
Expand Down
2 changes: 1 addition & 1 deletion doc/main.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.. Note: This file includes further autogenerated ones.
..
.. Version number is filled in automatically.
.. |version| replace:: 2.5.0-39
.. |version| replace:: 2.5.0-41

===========
ZeekControl
Expand Down

0 comments on commit 00afdb1

Please sign in to comment.