mercurial/crecord.py
changeset 24425 3a4122bb9488
parent 24423 01b39e821d00
child 24492 efa094701a05
--- a/mercurial/crecord.py	Sat Mar 21 01:24:17 2015 -0400
+++ b/mercurial/crecord.py	Fri Mar 20 23:35:13 2015 -0400
@@ -32,8 +32,9 @@
 try:
     curses
 except NameError:
-    raise util.Abort(
-        _('the python curses/wcurses module is not available/installed'))
+    if os.name != 'nt':  # Temporary hack to get running on Windows again
+        raise util.Abort(
+            _('the python curses/wcurses module is not available/installed'))
 
 _origstdout = sys.__stdout__ # used by gethw()