[gnome-shell] ibusManager: Fix version in log message
- From: Marge Bot <marge-bot src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] ibusManager: Fix version in log message
- Date: Sat, 12 Feb 2022 12:34:17 +0000 (UTC)
commit 615155f424aeedb507e61c1a11878e34f5c42b9c
Author: Florian Müllner <fmuellner gnome org>
Date: Mon Feb 7 15:14:42 2022 +0100
ibusManager: Fix version in log message
Whoops, we the log message complaints about minor.minor instead
of minor.micro.
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2160>
js/misc/ibusManager.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/js/misc/ibusManager.js b/js/misc/ibusManager.js
index 1eb47ab40b..45387877c7 100644
--- a/js/misc/ibusManager.js
+++ b/js/misc/ibusManager.js
@@ -30,7 +30,7 @@ function _checkIBusVersion(requiredMajor, requiredMinor, requiredMicro) {
return;
throw "Found IBus version %d.%d.%d but required is %d.%d.%d"
- .format(IBus.MAJOR_VERSION, IBus.MINOR_VERSION, IBus.MINOR_VERSION,
+ .format(IBus.MAJOR_VERSION, IBus.MINOR_VERSION, IBus.MICRO_VERSION,
requiredMajor, requiredMinor, requiredMicro);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]