Skip to content

Commit

Permalink
fix events
Browse files Browse the repository at this point in the history
  • Loading branch information
timoj committed Sep 7, 2022
1 parent 2859799 commit 0fe2317
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [unreleased] - yyyy-mm-dd

## [0.1.0-beta4.0.19] - 2022-09-07

### Fixed
- Event slots

## [0.1.0-beta4.0.18] - 2022-09-07

### Changed
Expand Down
2 changes: 1 addition & 1 deletion lib/eventmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class EnodoEvent:
that occured. No state data is saved.
"""
__slots__ = ('title', 'message', 'event_type',
'series', 'ts', 'severity', 'uuid')
'series', 'series_name', 'ts', 'value', 'severity', 'uuid')

def __init__(self, title, message, event_type,
series=None, ts=None, value=None):
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '0.1.0-beta4.0.18'
VERSION = '0.1.0-beta4.0.19'

0 comments on commit 0fe2317

Please sign in to comment.