##// END OF EJS Templates
Fix for issue1848
Matt Mackall -
r9524:effa0584 default
parent child Browse files
Show More
@@ -1270,6 +1270,11 b' def termwidth():'
1270 return array.array('h', arri)[1]
1270 return array.array('h', arri)[1]
1271 except ValueError:
1271 except ValueError:
1272 pass
1272 pass
1273 except IOError, e:
1274 if e[0] == errno.EINVAL:
1275 pass
1276 else:
1277 raise
1273 except ImportError:
1278 except ImportError:
1274 pass
1279 pass
1275 return 80
1280 return 80
General Comments 0
You need to be logged in to leave comments. Login now