##// END OF EJS Templates
crecord: don't abort on Windows when curses isn't available...
Matt Harbison -
r24425:3a4122bb default
parent child Browse files
Show More
@@ -32,8 +32,9 b' else:'
32 32 try:
33 33 curses
34 34 except NameError:
35 raise util.Abort(
36 _('the python curses/wcurses module is not available/installed'))
35 if os.name != 'nt': # Temporary hack to get running on Windows again
36 raise util.Abort(
37 _('the python curses/wcurses module is not available/installed'))
37 38
38 39 _origstdout = sys.__stdout__ # used by gethw()
39 40
General Comments 0
You need to be logged in to leave comments. Login now