Skip to content

Commit

Permalink
Merge pull request #3 from fkrieg/master
Browse files Browse the repository at this point in the history
Typos corrected.
  • Loading branch information
renakim authored Mar 29, 2018
2 parents 9ff446d + bbaa015 commit d8e53ee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions wizconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def run(self):
sys.exit(0)

op_code = OP_SETCOMMAND
print('Devcie configuration start...\n')
print('Device configuration start...\n')
# General config

if args.alloc: setcmd['IM'] = args.alloc
Expand Down Expand Up @@ -386,7 +386,7 @@ def run(self):
cmd_list = wizmakecmd.factory_reset(mac_addr)
else:
# op_code = OP_SETCOMMAND
print('[Multi] Setting devcies %d: %s' % (i+1, mac_addr))
print('[Multi] Setting devices %d: %s' % (i+1, mac_addr))
cmd_list = wizmakecmd.setcommand(mac_addr, list(setcmd.keys()), list(setcmd.values()))
get_cmd_list = wizmakecmd.getcommand(mac_addr, list(setcmd.keys()))
th_config = MultiConfigThread(mac_addr, cmd_list, OP_SETCOMMAND)
Expand Down Expand Up @@ -426,7 +426,7 @@ def run(self):
print('[Getfile] Get device [%s] info from \'%s\' commands\n' % (mac_addr, args.getfile))
cmd_list = wizmakecmd.get_value(mac_addr, args.getfile)
else:
print('* Single devcie config: %s' % mac_addr)
print('* Single device config: %s' % mac_addr)
cmd_list = wizmakecmd.setcommand(mac_addr, list(setcmd.keys()), list(setcmd.values()))
get_cmd_list = wizmakecmd.getcommand(mac_addr, list(setcmd.keys()))
# print('get_cmd_list', get_cmd_list)
Expand Down Expand Up @@ -473,4 +473,4 @@ def run(self):
wizmsghangler.parseresponse()

# wizmsghangler.get_log()


0 comments on commit d8e53ee

Please sign in to comment.