Remove extra print
authorBenjamin Auder <benjamin.auder@somewhere>
Wed, 6 May 2026 20:18:19 +0000 (22:18 +0200)
committerBenjamin Auder <benjamin.auder@somewhere>
Wed, 6 May 2026 20:18:19 +0000 (22:18 +0200)
bundle.py

index b1d794e..8353cf9 100755 (executable)
--- 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: