Skip to content

Commit d08815d

Browse files
authored
fix: find raw chatlog and polls for interims (ietf-tools#4628)
1 parent aba9c2a commit d08815d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

ietf/meeting/views.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,7 @@ def materials_document(request, document, num=None, ext=None):
207207
if (re.search(r'^\w+-\d+-.+-\d\d$', document) or
208208
re.search(r'^\w+-interim-\d+-.+-\d\d-\d\d$', document) or
209209
re.search(r'^\w+-interim-\d+-.+-sess[a-z]-\d\d$', document) or
210-
re.search(r'^minutes-interim-\d+-.+-\d\d$', document) or
211-
re.search(r'^slides-interim-\d+-.+-\d\d$', document)):
210+
re.search(r'^(minutes|slides|chatlog|polls)-interim-\d+-.+-\d\d$', document)):
212211
name, rev = document.rsplit('-', 1)
213212
else:
214213
name, rev = document, None

0 commit comments

Comments
 (0)