On 04/26/2010 01:03 PM, Jason Wang wrote: > In order to let the serial console work, we must let the > remote_login() send the username when needed. > > Signed-off-by: Jason Wang <jasowang@xxxxxxxxxx> > --- > client/tests/kvm/kvm_utils.py | 14 ++++++++++---- > 1 files changed, 10 insertions(+), 4 deletions(-) > > diff --git a/client/tests/kvm/kvm_utils.py b/client/tests/kvm/kvm_utils.py > index 9adbaee..1ea0852 100644 > --- a/client/tests/kvm/kvm_utils.py > +++ b/client/tests/kvm/kvm_utils.py > @@ -452,7 +452,7 @@ def check_kvm_source_dir(source_dir): > # guests. > > def remote_login(command, password, prompt, linesep="\n", timeout=10, > - prompt_assist = None): > + prompt_assist = None, username = None): ^ ^ ^ ^ Same here: PEP 8 says no spaces around keyword arguments or default values, and pretty much all of the KVM test code conforms with PEP 8, so let's be consistent. -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html