X-Git-Url: http://git.cascardo.info/?p=cascardo%2Fipsilon.git;a=blobdiff_plain;f=ipsilon%2Ftools%2Ffiles.py;h=857a2fee67654595e4c42de83977b2f1f3876f1c;hp=58476543c946fc65b527ae9ebeaf09dce3584f4f;hb=1bcc0d697dd37a9268641f0cbaa7e9e781552233;hpb=93d4e52712767fe955f3a44a60a6c6f0f909423b diff --git a/ipsilon/tools/files.py b/ipsilon/tools/files.py index 5847654..857a2fe 100644 --- a/ipsilon/tools/files.py +++ b/ipsilon/tools/files.py @@ -39,6 +39,6 @@ def fix_user_dirs(path, user=None, mode=0700): def write_from_template(destfile, template, opts): with open(template) as f: t = Template(f.read()) - text = t.substitute(**opts) # pylint: disable=star-args + text = t.substitute(**opts) with open(destfile, 'w+') as f: f.write(text)