9 lines
139 B
Python
9 lines
139 B
Python
|
from . import site
|
||
|
content = 'Another Bad Module'
|
||
|
|
||
|
site._registry.update({
|
||
|
'foo': 'bar',
|
||
|
})
|
||
|
|
||
|
raise Exception('Some random exception.')
|