Skip to content

Commit 28f7708

Browse files
committed
Fix check that the listing of *.ipynb files matches the README.md file
Signed-off-by: Thomas Günther <tom@toms-cafe.de>
1 parent fb78a6a commit 28f7708

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

py/pytudes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def read_url(url: str) -> str:
153153
def ipynbs(page: str) -> set:
154154
"""Return a set of filenames for all *.ipynb in page."""
155155
page = page.replace('%20', ' ').replace('%2F','/')
156-
return set(re.findall(r'[A-Za-z_ ]+[.]ipynb', page))
156+
return set(re.findall(r'[A-Za-z_ 0-9-]+[.]ipynb', page))
157157

158158
def check():
159159
"""Check that the listing of *.ipynb files matches the README.md file"""

0 commit comments

Comments
 (0)