lda_controller: replace serial argument with device one

This commit is contained in:
Yann Sionneau 2015-03-23 09:55:08 +01:00 committed by Sebastien Bourdeauducq
parent 2651050c83
commit 91336f974d
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ def main():
if args.device is None:
lda = Ldasim()
else:
lda = Lda(args.serial, args.product)
lda = Lda(args.device, args.product)
try:
simple_server_loop({"lda": lda},
args.bind, args.port)