Skip to content

Commit f8f3c63

Browse files
committed
Fix failed rebase attempt
1 parent 1734ed7 commit f8f3c63

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

wsdiscovery/cmdline.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,11 @@ def setup_logger(name, loglevel):
5050
@click.option('--capture', '-c', nargs=1, type=click.File('w'), help='Capture messages to a file')
5151
@click.option('--timeout', '-t', default=DEFAULT_DISCOVERY_TIMEOUT, show_default=True,
5252
type=int, help='Discovery timeout in seconds')
53-
def discover(scope, address, port, loglevel, capture, timeout):
5453
@click.option('--unicast-num', '-un', type=int, default=UNICAST_UDP_REPEAT,
5554
show_default=True, help='Number of Unicast messages to send')
5655
@click.option('--multicast-num', '-mn', type=int, default=MULTICAST_UDP_REPEAT,
5756
show_default=True, help='Number of Multicast messages to send')
58-
def discover(scope, address, port, loglevel, capture, unicast_num,
57+
def discover(scope, address, port, loglevel, capture, timeout, unicast_num,
5958
multicast_num):
6059
"Discover services using WS-Discovery"
6160

0 commit comments

Comments
 (0)