Skip to content

Commit

Permalink
change print argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Salem-Tho authored and JeromeGalan committed Aug 31, 2022
1 parent 0ec373c commit 4649829
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyluos/tools/bootloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ def reboot_network(device, nodes_to_reboot):
# *******************************************************************************
def luos_flash(args):
print('Luos flash subcommand with parameters :')
print('\tbaudrate : ', args.baudrate)
print('\t--baudrate : ', args.baudrate)
print('\t--gate : ', args.gate)
print('\t--target : ', args.target)
print('\t--binary : ', args.binary)
Expand Down Expand Up @@ -547,7 +547,7 @@ def luos_flash(args):
# *******************************************************************************
def luos_detect(args):
print('Luos detect subcommand on port : ', args.port)
print('\tbaudrate : ', args.baudrate)
print('\tLuos detect subcommand at baudrate : ', args.baudrate)

if not (args.port):
try:
Expand All @@ -571,7 +571,7 @@ def luos_detect(args):
# *******************************************************************************
def luos_reset(args):
print('Luos discover subcommand on port : ', args.port)
print('\tbaudrate : ', args.baudrate)
print('\tLuos discover subcommand at baudrate : ', args.baudrate)

if not (args.port):
try:
Expand Down

0 comments on commit 4649829

Please sign in to comment.