##// END OF EJS Templates
scmposix: another suppression on IOError subscripting...
Augie Fackler -
r43781:667f56d7 default
parent child Browse files
Show More
@@ -90,7 +90,7 b' def termsize(ui):'
90 90 except ValueError:
91 91 pass
92 92 except IOError as e:
93 if e[0] == errno.EINVAL:
93 if e[0] == errno.EINVAL: # pytype: disable=unsupported-operands
94 94 pass
95 95 else:
96 96 raise
General Comments 0
You need to be logged in to leave comments. Login now