diff --git a/bumblebee/config.py b/bumblebee/config.py index d8c8613..69dae84 100644 --- a/bumblebee/config.py +++ b/bumblebee/config.py @@ -71,7 +71,7 @@ class Config(bumblebee.store.Store): self._args = parser.parse_args(args if args else []) if not self._args.debug: - logger = logging.getLogger().disabled = True + logging.getLogger().disabled = True for param in self._args.parameters: key, value = param.split("=") diff --git a/bumblebee/modules/currency.py b/bumblebee/modules/currency.py index 759530d..7cda1d9 100644 --- a/bumblebee/modules/currency.py +++ b/bumblebee/modules/currency.py @@ -59,9 +59,9 @@ class Module(bumblebee.engine.Module): def update(self, widgets): timestamp = int(time.time()) - if self._nextcheck < int(time.time()): + if self._nextcheck < timestamp: self._data = [] - self._nextcheck = int(time.time()) + self._interval*60 + self._nextcheck = timestamp + self._interval*60 for symbol in self._symbols: url = API_URL.format(self._base, symbol) try: diff --git a/bumblebee/modules/weather.py b/bumblebee/modules/weather.py index 1bad080..9838a0f 100644 --- a/bumblebee/modules/weather.py +++ b/bumblebee/modules/weather.py @@ -83,9 +83,9 @@ class Module(bumblebee.engine.Module): def update(self, widgets): timestamp = int(time.time()) - if self._nextcheck < int(time.time()): + if self._nextcheck < timestamp: try: - self._nextcheck = int(time.time()) + self._interval*60 + self._nextcheck = timestamp + self._interval*60 weather_url = "http://api.openweathermap.org/data/2.5/weather?appid={}".format(self._apikey) weather_url = "{}&units={}".format(weather_url, self._unit) if self._location == "auto": diff --git a/bumblebee/output.py b/bumblebee/output.py index c7ebbe9..99dadc3 100644 --- a/bumblebee/output.py +++ b/bumblebee/output.py @@ -102,7 +102,6 @@ class I3BarOutput(object): padding = self._theme.padding(widget) prefix = self._theme.prefix(widget, padding) suffix = self._theme.suffix(widget, padding) - minwidth = self._theme.minwidth(widget) if prefix: full_text = u"{}{}".format(prefix, full_text) if suffix: