Skip to content

Commit

Permalink
Merge d60c3a5 into 0121bb0
Browse files Browse the repository at this point in the history
  • Loading branch information
Arcticae authored Oct 19, 2019
2 parents 0121bb0 + d60c3a5 commit 1379fd7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pyipmi/sel.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,5 +174,7 @@ def _from_response(self, data):
self.event_direction = EVENT_DEASSERTION
else:
self.event_direction = EVENT_ASSERTION
self.event_type = event_desc & 0x3f
self.event_data = buffer.pop_string(3)
self.event_type = event_desc & 0x7f
self.event_data_1 = buffer.pop_unsigned_int(1)
self.event_data_2 = buffer.pop_unsigned_int(1)
self.event_data_3 = buffer.pop_unsigned_int(1)

0 comments on commit 1379fd7

Please sign in to comment.