Skip to content

Commit

Permalink
Merge pull request #7269 from p12tic/fix-www-package-build
Browse files Browse the repository at this point in the history
pkg: Don't use announce() for logging
  • Loading branch information
p12tic committed Dec 14, 2023
2 parents 9cb27b5 + 7ed0fad commit 4cbad49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions newsfragments/www-package-build-older-python.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix web frontend package build on certain Python versions (e.g. 3.9).
3 changes: 1 addition & 2 deletions pkg/buildbot_pkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,7 @@ def run(self):
]

for command in commands:
self.announce('Running command: {}'.format(str(" ".join(command))),
level=logging.INFO)
logging.info('Running command: {}'.format(str(" ".join(command))))
subprocess.check_call(command, shell=shell)

self.copy_tree(os.path.join(package, 'static'), os.path.join(
Expand Down

0 comments on commit 4cbad49

Please sign in to comment.