diff options
Diffstat (limited to 'support')
-rw-r--r-- | support/segenxml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/segenxml.py b/support/segenxml.py index 115f2870..7a323177 100644 --- a/support/segenxml.py +++ b/support/segenxml.py @@ -235,7 +235,7 @@ def getTunableXML(file_name, kind): template_code = template_file.readlines() template_file.close() except OSError: - warning("cannot open file %s for read, bailing out" % templatedir + "/" + template_call.group(1) + ".iftemplate") + warning("cannot open file %s for read, bailing out" % (templatedir + "/" + template_call.group(1) + ".iftemplate")) return [] # Substitute content (i.e. $1 for argument 1, $2 for argument 2, etc.) template_split = re.findall(r"[\w\" {}]+", line.strip()) |