##// END OF EJS Templates
util: rename argument of isatty()...
Yuya Nishihara -
r27363:c7ab2087 default
parent child Browse files
Show More
@@ -2308,9 +2308,9 b' def removeauth(u):'
2308 u.user = u.passwd = None
2308 u.user = u.passwd = None
2309 return str(u)
2309 return str(u)
2310
2310
2311 def isatty(fd):
2311 def isatty(fp):
2312 try:
2312 try:
2313 return fd.isatty()
2313 return fp.isatty()
2314 except AttributeError:
2314 except AttributeError:
2315 return False
2315 return False
2316
2316
General Comments 0
You need to be logged in to leave comments. Login now