1 parent fb78a6a commit 28f7708Copy full SHA for 28f7708
1 file changed
py/pytudes.py
@@ -153,7 +153,7 @@ def read_url(url: str) -> str:
153
def ipynbs(page: str) -> set:
154
"""Return a set of filenames for all *.ipynb in page."""
155
page = page.replace('%20', ' ').replace('%2F','/')
156
- return set(re.findall(r'[A-Za-z_ ]+[.]ipynb', page))
+ return set(re.findall(r'[A-Za-z_ 0-9-]+[.]ipynb', page))
157
158
def check():
159
"""Check that the listing of *.ipynb files matches the README.md file"""
0 commit comments