Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
csperkins committed Dec 14, 2022
1 parent 5d94416 commit fabcfb7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Log -- ietfdata
======================

## Version 0.6.4 -- 14 December 2022

- Fix `meeting_session_status()`


## Version 0.6.3 -- 14 December 2022

- `meeting_session_status()` can return None
Expand Down
4 changes: 2 additions & 2 deletions ietfdata/datatracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -1731,7 +1731,7 @@ def __init__(self,
logging.basicConfig(level=os.environ.get("IETFDATA_LOGLEVEL", "INFO"))
self.log = logging.getLogger("ietfdata")

self.ua = "glasgow-ietfdata/0.6.3" # Update when making a new relaase
self.ua = "glasgow-ietfdata/0.6.4" # Update when making a new relaase
self.base_url = "https://datatracker.ietf.org"
self.http_req = 0
self.get_count = 0
Expand Down Expand Up @@ -3029,7 +3029,7 @@ def meeting_session_assignments(self, schedule : Schedule) -> Iterator[SessionAs
def meeting_session_status(self, session: Session) -> Optional[SessionStatusName]:
sched_events = list(self.meeting_scheduling_events(session=session))
if len(sched_events) > 0:
status_name = self.meeting_session_status_name(sched_events[1].status)
status_name = self.meeting_session_status_name(sched_events[-1].status)
return status_name
return None

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="ietfdata",
version="0.6.3",
version="0.6.4",
author="Colin Perkins",
author_email="csp@csperkins.org",
description="Access the IETF Data Tracker and RFC Index",
Expand Down

0 comments on commit fabcfb7

Please sign in to comment.