# HG changeset patch # User Brendan Cully # Date 1228870874 28800 # Node ID 0a27d0db256d995fb386509ceff3901509e511b4 # Parent 85dc88630beb98ea5bc6df7f0aecb1e4273e5e0a issue1419: catch strange readline import error on windows diff -r 85dc88630beb -r 0a27d0db256d mercurial/ui.py --- a/mercurial/ui.py Wed Dec 10 00:16:12 2008 +0100 +++ b/mercurial/ui.py Tue Dec 09 17:01:14 2008 -0800 @@ -407,7 +407,8 @@ 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