From fbbd7df61d656885bb16b55f9830754a032a29ad Mon Sep 17 00:00:00 2001 From: Faiyaz Ahmed Date: Tue, 1 Apr 2008 21:39:17 +0000 Subject: [PATCH] Syntax error when writing config file --- codemux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codemux.py b/codemux.py index a345a48..1af0452 100644 --- a/codemux.py +++ b/codemux.py @@ -76,7 +76,7 @@ def writeConf(slivers, conf = CODEMUXCONF): '''Write conf with default entry up top. Write lower order domain names first. Restart service.''' f = open(conf, "w") # This needs to be the first entry... - f.write("* root %s\n", Config().PLC_PLANETFLOW_HOST) + f.write("* root %s\n" % Config().PLC_PLANETFLOW_HOST) # Sort items for like domains for slice in sortDomains(slivers): if slice == "root": continue -- 2.47.0