From d1f16494b50b9d7b4527730ab9def581dab99f52 Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Wed, 6 May 2026 22:18:19 +0200 Subject: [PATCH] Remove extra print --- bundle.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bundle.py b/bundle.py index b1d794e..8353cf9 100755 --- a/bundle.py +++ b/bundle.py @@ -64,7 +64,6 @@ def run_bundle(): # 2. Update references for root, dirs, files in os.walk(DEST_DIR): for file in files: - print(file) if os.path.splitext(file)[1] in EXTENSIONS_TO_UPDATE and not re.match(r'^app\.[^\.]+\.js$', file): file_path = os.path.join(root, file) with open(file_path, 'r', encoding='utf-8') as f: -- 2.53.0