2016-09-03 5 views
0

저는 파이썬에 익숙하지 않습니다. "pexpect"예제 repo에서이 코드 조각을 발견했습니다. 나는 필요한 변화를했다. 그러나 "TypeError"를 던지고 있습니다. 이유를 알아낼 수 없습니다. 왜 그런지 설명 할 수 있습니다. 어떻게 해결할 수 있습니까?pexpect : TypeError : "+ : 'float'및 'str'에 대해 지원되지 않는 피연산자 유형"

"PDB"PDB에 "아이 = ssh_command (사용자, 호스트, 비밀번호)"

오류에 오류를 발행했다 :

TypeError: "unsupported operand type(s) for +: 'float' and 'str'" 

코드 아래 줄입니다

import pexpect 

def ssh_command(user, host, password): 
    new_sshkey = 'Are you sure you want to continue connecting' 
    child = pexpect.spawn('ssh %[email protected]%s' %(user, host)) 
    i = child.expect(new_sshkey, 'password: ') 
    if i == 0: 
     print 'ERROR.! SSH could not login.' 
     print child.before, child.after 
    if i == 1: 
     child.sendline('yes') 
     child.expect('password: ') 
     i = child.expect('password: ') 
     if i == 0: 
      print 'ERROR.! Permission Denied' 
      print child.before, child.after 
    return child 

def main(): 
    host = raw_input('Hostname: ') 
    user = raw_input('Username: ') 
    password = raw_input('Password: ') 
    child = ssh_command(user, host, password) 
    child.expect(pexpect.EOF) 
    print child.before 

if __name__ == '__main__': 
    try: 
     main() 
    except Exception, e: 
     print str(e) 

답변

1

대부분이 오류로 인해이 오류가 발생했습니다.

i = child.expect(new_sshkey, 'password: ') 
expect 방법으로 선언 된 문서에 따르면 5,는

당신은 아마 int해야 두 번째 인수 (timeout)로 'password: '을 전달하는 귀하의 경우에는

child.expect(pattern, timeout=-1, searchwindowsize=-1, async=False) 

을 따른다.