File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
3
3
4
4
This CHANGELOG follows the format listed [ here] ( https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md )
5
5
6
+ ## [ 0.3.1] 2017-10-10
7
+ ### Fixed
8
+ - Really obvious logical error introduced whilst making 0.3.0 pass tests (@barryorourke )
9
+
6
10
## [ 0.3.0] 2017-10-06
7
11
### Breaking Change
8
12
- Dropped support for Python 3.3 (@barryorourke )
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ def __make_dynamic(self, method):
48
48
49
49
def dynamic (* args ):
50
50
self .plugin_info ['status' ] = method
51
- if args :
51
+ if not args :
52
52
args = None
53
53
self .output (args )
54
54
sys .exit (getattr (self .exit_code , method ))
You can’t perform that action at this time.
0 commit comments