mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
10 lines
200 B
Python
10 lines
200 B
Python
|
from conf import hook
|
||
|
|
||
|
@hook(alias='Domains')
|
||
|
class Domains:
|
||
|
def __init__(self, domains):
|
||
|
self.domains = domains
|
||
|
|
||
|
def __call__(self, test_obj):
|
||
|
test_obj.domains = self.domains
|