##// END OF EJS Templates
crecord: ensure that curses is False if not imported...
Sean Farley -
r27530:ba30ef5b stable
parent child Browse files
Show More
@@ -43,8 +43,9 b' except ImportError:'
43 43 import wcurses as curses
44 44 curses.error
45 45 except ImportError:
46 # wcurses is not shipped on Windows by default
47 pass
46 # wcurses is not shipped on Windows by default, or python is not
47 # compiled with curses
48 curses = False
48 49
49 50 try:
50 51 curses
General Comments 0
You need to be logged in to leave comments. Login now