mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
11 lines
229 B
Python
11 lines
229 B
Python
|
from conf import hook
|
||
|
|
||
|
|
||
|
@hook()
|
||
|
class WgetCommands:
|
||
|
def __init__(self, commands):
|
||
|
self.commands = commands
|
||
|
|
||
|
def __call__(self, test_obj):
|
||
|
test_obj.wget_options = test_obj._replace_substring(self.commands)
|