##// END OF EJS Templates
crecord: null out the curses attribute with `None` on failure to import...
Matt Harbison -
r47546:693991cc stable
parent child Browse files
Show More
@@ -64,7 +64,7 b' try:'
64
64
65 curses.error
65 curses.error
66 except (ImportError, AttributeError):
66 except (ImportError, AttributeError):
67 curses = False
67 curses = None
68
68
69
69
70 class fallbackerror(error.Abort):
70 class fallbackerror(error.Abort):
General Comments 0
You need to be logged in to leave comments. Login now