From 5cfc08679bc314bced757beb0efc61323252e7b9 Mon Sep 17 00:00:00 2001 From: lihuanhuan Date: Sat, 13 Apr 2013 14:22:37 +0800 Subject: [PATCH] Fix native and bootstrap mode switch automatically Fixes: #1242 MIC should not fallback to native mode if bootstrap package can not be found Change-Id: Ia682572aaaf9e028ea8e15f2d8082d0b6f1a781c --- mic/rt_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mic/rt_util.py b/mic/rt_util.py index e718c67..d8052f6 100644 --- a/mic/rt_util.py +++ b/mic/rt_util.py @@ -84,7 +84,7 @@ def bootstrap_mic(argv=None): except errors.BootstrapError, err: msger.warning('\n%s' % err) - if msger.ask("Switch to native mode and continue?"): + if msger.ask("Switch to native mode and continue?", False): return raise except RuntimeError, err: -- 2.7.4