From 63bb771df22c73d2e45e6577a01bf4e4a7c60dc6 Mon Sep 17 00:00:00 2001 From: lucassouto Date: Sat, 8 Sep 2018 18:59:55 -0300 Subject: [PATCH] Fix for previous versions of python --- bumblebee/modules/arch-update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumblebee/modules/arch-update.py b/bumblebee/modules/arch-update.py index 26215c6..8df8b13 100644 --- a/bumblebee/modules/arch-update.py +++ b/bumblebee/modules/arch-update.py @@ -30,7 +30,7 @@ class Module(bumblebee.engine.Module): return '0' def utilization(self, widget): - return f'Update Arch: {self.packages}' + return 'Update Arch: {}'.format(self.packages) def hidden(self): return self.check_updates() == 0