Unwrap several for statements from 2to3 conversion process.
This commit is contained in:
parent
8c318c6d38
commit
f2e800ddf1
22 changed files with 37 additions and 37 deletions
|
|
@ -567,7 +567,7 @@ def cmdhandler(called_by, raw_string, _testing=False, callertype="session", sess
|
|||
returnValue(cmd)
|
||||
|
||||
# assign custom kwargs to found cmd object
|
||||
for key, val in list(kwargs.items()):
|
||||
for key, val in kwargs.items():
|
||||
setattr(cmd, key, val)
|
||||
|
||||
_COMMAND_NESTING[called_by] += 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue