#486·PageIndex

[Bug]: Bare except in page_index_md.py masks underlying import and syntax errors

Author: Pradeepks01Created Sep 5, 2026Updated Sep 5, 2026

Describe the Bug

In pageindex/page_index_md.py, the fallback import for utils uses a bare except::

python
try:
    from .utils import *
except:
    from utils import *