##// 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,6 +32,7 else:
32 try:
32 try:
33 curses
33 curses
34 except NameError:
34 except NameError:
35 if os.name != 'nt': # Temporary hack to get running on Windows again
35 raise util.Abort(
36 raise util.Abort(
36 _('the python curses/wcurses module is not available/installed'))
37 _('the python curses/wcurses module is not available/installed'))
37
38
General Comments 0
You need to be logged in to leave comments. Login now