Remove redundant 'self.user or' added by 0f91add

pull/7917/head
James Cammarata 11 years ago
parent bbaf803227
commit 1adb6dfa05

@ -94,7 +94,7 @@ class Connection(object):
self.common_args += ["-o", "KbdInteractiveAuthentication=no",
"-o", "PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey",
"-o", "PasswordAuthentication=no"]
self.common_args += ["-o", "User=" + (self.user or self.user or pwd.getpwuid(os.geteuid())[0])]
self.common_args += ["-o", "User=" + (self.user or pwd.getpwuid(os.geteuid())[0])]
self.common_args += ["-o", "ConnectTimeout=%d" % self.runner.timeout]
return self

Loading…
Cancel
Save