1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-02-11 13:29:19 +01:00

Merge pull request #1637 from dmach/meter-fix-use_pb_fallback

Fix meter by setting default of use_pb_fallback to False
This commit is contained in:
Daniel Mach 2024-10-09 08:36:39 +02:00 committed by GitHub
commit 8f10569cf3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -85,7 +85,7 @@ class NoTextMeter(TextMeterBase):
def create_text_meter(*args, **kwargs) -> TextMeterBase:
from .conf import config
use_pb_fallback = kwargs.pop("use_pb_fallback", True)
use_pb_fallback = kwargs.pop("use_pb_fallback", False)
meter_class: TextMeterBase
if config.quiet: