# HG changeset patch # User Brendan Cully # Date 2008-12-10 01:02:52 # Node ID f598df061fec03e360d1adcb51f9da2e981c3ae5 # Parent 90487273f59c7a6242529ecc71793e1414c23cf8 # Parent 0a27d0db256d995fb386509ceff3901509e511b4 Merge with crew-stable diff --git a/mercurial/ui.py b/mercurial/ui.py --- a/mercurial/ui.py +++ b/mercurial/ui.py @@ -407,7 +407,8 @@ class ui(object): import readline # force demandimport to really load the module readline.read_history_file - except ImportError: + # windows sometimes raises something other than ImportError + except Exception: pass line = raw_input(prompt) # When stdin is in binary mode on Windows, it can cause