File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
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.2] 2017-10-10
7
+ ### Fixed
8
+ - Variable name changes in the metrics classed missed during the initial 0.3.0 release (@barryorourke )
9
+
6
10
## [ 0.3.1] 2017-10-10
7
11
### Fixed
8
12
- Really obvious logical error introduced whilst making 0.3.0 pass tests (@barryorourke )
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class SensuPluginMetricGraphite(SensuPlugin):
26
26
def output (self , * args ):
27
27
if args [0 ] is None :
28
28
print ()
29
- elif isinstance (m [0 ], Exception ) or m [1 ] is None :
29
+ elif isinstance (args [0 ], Exception ) or args [1 ] is None :
30
30
print (args [0 ])
31
31
else :
32
32
l_args = list (args )
Original file line number Diff line number Diff line change 2
2
3
3
setup (
4
4
name = 'sensu_plugin' ,
5
- version = '0.3.1 ' ,
5
+ version = '0.3.2 ' ,
6
6
author = 'Sensu-Plugins and contributors' ,
7
7
author_email = 'sensu-users@googlegroups.com' ,
8
8
packages = ['sensu_plugin' , 'sensu_plugin.test' ],
You can’t perform that action at this time.
0 commit comments