From f278384683b4105be0362302786e03f2a076e9bc Mon Sep 17 00:00:00 2001 From: Zhang Qiang Date: Wed, 14 Dec 2011 10:37:39 +0800 Subject: [PATCH] conf: fix string format issue. --- mic/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mic/conf.py b/mic/conf.py index 85759bd..751a18a 100644 --- a/mic/conf.py +++ b/mic/conf.py @@ -157,7 +157,7 @@ class ConfigMgr(object): msger.info("\nUse detected arch %s." % target_archlist[0]) else: raise errors.ConfigError("Please specify a valid arch, " - "your choise can be: " % ', '.join(target_archlist)) + "your choise can be: %s" % ', '.join(target_archlist)) kickstart.resolve_groups(self.create, self.create['repomd']) -- 2.7.4