From: Barış Metin Date: Mon, 23 Mar 2009 18:19:17 +0000 (+0000) Subject: fix the typo in the second line X-Git-Tag: BootManager-4.3-3~2 X-Git-Url: http://git.onelab.eu/?p=bootmanager.git;a=commitdiff_plain;h=83aabfdd97b47a41e3d62b91d8aba0ffca617c0b fix the typo in the second line --- diff --git a/source/steps/WriteModprobeConfig.py b/source/steps/WriteModprobeConfig.py index 8984e41..9549c08 100644 --- a/source/steps/WriteModprobeConfig.py +++ b/source/steps/WriteModprobeConfig.py @@ -72,7 +72,7 @@ def Run( vars, log, filename = "/etc/modprobe.conf"): count=0 for a_mod in sysmods[systeminfo.MODULE_CLASS_NETWORK]: line="# Want to comment this out in the future.\n" - line="alias eth%d %s\n" % (count,a_mod) + line+="alias eth%d %s\n" % (count,a_mod) modulesconf_file.write(line) count=count+1