diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-07-18 16:12:53 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-07-18 16:12:53 +0530 |
commit | 2aecd333c91782c0aabcacacb61606ae98236fa2 (patch) | |
tree | 3fe6b8b4991b048d3439ff28e0b7190ae52cc923 | |
parent | 88719a0990c6504a1566cad65d420606faa26eeb (diff) |
cerbero: Don't warn about distro version bootstrapper
Closes https://gitlab.freedesktop.org/gstreamer/cerbero/-/issues/94
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/558>
-rw-r--r-- | cerbero/bootstrap/bootstrapper.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cerbero/bootstrap/bootstrapper.py b/cerbero/bootstrap/bootstrapper.py index b970ef50..cd358a3b 100644 --- a/cerbero/bootstrap/bootstrapper.py +++ b/cerbero/bootstrap/bootstrapper.py @@ -64,8 +64,6 @@ class Bootstrapper (object): if d not in bootstrappers: raise FatalError(_("No bootstrapper for the distro %s" % d)) if v not in bootstrappers[d]: - # Be tolerant with the distro version - m.warning(_("No bootstrapper for the distro version %s" % v)) v = None bs.insert(0, bootstrappers[d][v](config, offline, assume_yes)) |