From 83aabfdd97b47a41e3d62b91d8aba0ffca617c0b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bar=C4=B1=C5=9F=20Metin?= Date: Mon, 23 Mar 2009 18:19:17 +0000 Subject: [PATCH] fix the typo in the second line --- source/steps/WriteModprobeConfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.43.0