Skip to content

Commit

Permalink
fix: find raw chatlog and polls for interims (ietf-tools#4628)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjsparks authored Oct 21, 2022
1 parent aba9c2a commit d08815d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ietf/meeting/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,7 @@ def materials_document(request, document, num=None, ext=None):
if (re.search(r'^\w+-\d+-.+-\d\d$', document) or
re.search(r'^\w+-interim-\d+-.+-\d\d-\d\d$', document) or
re.search(r'^\w+-interim-\d+-.+-sess[a-z]-\d\d$', document) or
re.search(r'^minutes-interim-\d+-.+-\d\d$', document) or
re.search(r'^slides-interim-\d+-.+-\d\d$', document)):
re.search(r'^(minutes|slides|chatlog|polls)-interim-\d+-.+-\d\d$', document)):
name, rev = document.rsplit('-', 1)
else:
name, rev = document, None
Expand Down

0 comments on commit d08815d

Please sign in to comment.