Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
steveny91 committed Oct 31, 2024
1 parent b4e15dd commit 68273d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ibm_mq/datadog_checks/ibm_mq/stats/base_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@


class BaseStats(object):
def __init__(self, raw_message):
self.start_datetime = self._parse_datetime(raw_message[MQCAMO_START_DATE], raw_message[MQCAMO_START_TIME])
def __init__(self, raw_message, timezone=None):
self.start_datetime = self._parse_datetime(raw_message[MQCAMO_START_DATE], raw_message[MQCAMO_START_TIME], timezone=timezone)

@staticmethod
def _parse_datetime(raw_date, raw_time, timezone=None):
Expand Down

0 comments on commit 68273d6

Please sign in to comment.