Skip to content

Commit

Permalink
Merge branch 'topic/christian/plugin-deactivation-bugfix' of https://…
Browse files Browse the repository at this point in the history
…github.com/ckreibich/package-manager

* 'topic/christian/plugin-deactivation-bugfix' of https://github.com/ckreibich/package-manager:
  Bugfix: incorrect arguments to Manager.has_plugin()
  • Loading branch information
jsiwek committed Aug 28, 2019
2 parents eb9369a + e9c19f4 commit 30f0561
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES
@@ -1,4 +1,8 @@

2.0.3-2 | 2019-08-28 15:49:54 -0700

* Bugfix: incorrect arguments to Manager.has_plugin() (Christian Kreibich, Corelight)

2.0.3 | 2019-08-26 14:18:12 -0700

* Release 2.0.3.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
2.0.3
2.0.3-2
2 changes: 1 addition & 1 deletion doc/man/zkg.1
@@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText.
.
.TH "ZKG" "1" "Aug 26, 2019" "2.0.3" "Zeek Package Manager"
.TH "ZKG" "1" "Aug 28, 2019" "2.0.3-2" "Zeek Package Manager"
.SH NAME
zkg \- Zeek Package Manager
.
Expand Down
2 changes: 1 addition & 1 deletion zeekpkg/__init__.py
Expand Up @@ -9,7 +9,7 @@

import logging

__version__ = "2.0.3"
__version__ = "2.0.3-2"
__all__ = ['manager', 'package', 'source']

LOG = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion zeekpkg/manager.py
Expand Up @@ -1022,7 +1022,7 @@ def load(self, pkg_path):

if (not os.path.exists(pkg_load_script) and
not os.path.exists(pkg_load_fallback) and
not self.has_plugin(self, ipkg)):
not self.has_plugin(ipkg)):
LOG.debug('loading "%s": %s not found and package has no plugin',
pkg_path, pkg_load_script)
return 'no __load__.zeek within package script_dir and no plugin included'
Expand Down

0 comments on commit 30f0561

Please sign in to comment.