mirror of
https://github.com/Hopiu/django.git
synced 2026-03-17 06:20:24 +00:00
11 lines
154 B
Python
11 lines
154 B
Python
from . import site
|
|
|
|
content = "Another Bad Module"
|
|
|
|
site._registry.update(
|
|
{
|
|
"foo": "bar",
|
|
}
|
|
)
|
|
|
|
raise Exception("Some random exception.")
|