about summary refs log tree commit diff
path: root/strike.py
diff options
context:
space:
mode:
authorStarfall <us@starfall.systems>2021-10-23 12:47:20 -0500
committerStarfall <us@starfall.systems>2023-12-05 10:00:32 -0600
commit2eb81abb648d497b8b9e497ec00d58a893f3727e (patch)
tree3bc15bc49919c3dc7785f34f2d6298c25b29911d /strike.py
parent6476982874fec8a7e0e77b0f0484c7c8c0c56ea9 (diff)
strike: statement of intent for a few more variables
Diffstat (limited to 'strike.py')
-rwxr-xr-xstrike.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/strike.py b/strike.py
index b6d526b..f3ae173 100755
--- a/strike.py
+++ b/strike.py
@@ -39,14 +39,14 @@ def main():
     except FileExistsError: pass
 
     with open(default_template) as t:
-        template_contents = t.read()
+        template = t.read()
 
     for file in listdir(input_dir):
         if file in exclusions:
             continue 
         with open(path.join(input_dir, file), 'r') as fin:
             file_contents = fin.read()
-        output = get_output(file_contents, template=template_contents)
+        output = get_output(file_contents, template)
         with open(path.join(output_dir, file), 'w') as fout:
             fout.write(output)