ssh=paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect('devicenames',22,username=username,password=password)
我的python代码中出现“IndentationError:意外缩进”。 我已将此代码用于SSH写入Cisco设备,但是当我运行此python代码时,它会出现此错误。
./device-config-backup.py
ssh=paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect('devicenames',22,username=username,password=password)`
File "./device-config-backup.py", line 23
ssh=paramiko.SSHClient()
^
IndentationError: unexpected indent
有人能告诉我可能出现的错误吗?