summaryrefslogtreecommitdiff
path: root/tools/preprocess_frozen_modules.py
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2020-01-13 18:29:34 -0500
committerDan Halbert <halbert@halwitz.org>2020-01-13 18:29:34 -0500
commit0367ba7495e209e38ff80934affe9e7fb3f04cff (patch)
tree50d0b05fbedcf05c4acc69c1be9911f871582210 /tools/preprocess_frozen_modules.py
parent2a75196aa3598b3daf4c6fcebdc47dcad597b332 (diff)
fix some typos and leftovers
Diffstat (limited to 'tools/preprocess_frozen_modules.py')
-rwxr-xr-xtools/preprocess_frozen_modules.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/preprocess_frozen_modules.py b/tools/preprocess_frozen_modules.py
index 974ccecd1..7ae20c4d6 100755
--- a/tools/preprocess_frozen_modules.py
+++ b/tools/preprocess_frozen_modules.py
@@ -48,7 +48,6 @@ def copy_and_process(in_dir, out_dir):
output_file_path = Path(out_dir, input_file_path.relative_to(in_dir))
if file.endswith(".py"):
- print(file)
if not output_file_path.parent.exists():
output_file_path.parent.mkdir(parents=True)
with input_file_path.open("r") as input, output_file_path.open("w") as output: