Add configurable interval to scores module (#727)
This commit is contained in:
parent
780cf54cf7
commit
25fba049d0
@ -341,6 +341,7 @@ class Scores(Module):
|
|||||||
|
|
||||||
settings = (
|
settings = (
|
||||||
('backends', 'List of backend instances'),
|
('backends', 'List of backend instances'),
|
||||||
|
('interval', 'Update interval (in seconds)'),
|
||||||
('favorite_icon', 'Value for the ``{away_favorite}`` and '
|
('favorite_icon', 'Value for the ``{away_favorite}`` and '
|
||||||
'``{home_favorite}`` formatter when the displayed game '
|
'``{home_favorite}`` formatter when the displayed game '
|
||||||
'is being played by a followed team'),
|
'is being played by a followed team'),
|
||||||
@ -430,7 +431,7 @@ class Scores(Module):
|
|||||||
with self.condition:
|
with self.condition:
|
||||||
self.condition.wait(self.interval)
|
self.condition.wait(self.interval)
|
||||||
self.check_scores(force='scheduled')
|
self.check_scores(force='scheduled')
|
||||||
except:
|
except Exception:
|
||||||
msg = 'Exception in {thread} at {time}, module {name}'.format(
|
msg = 'Exception in {thread} at {time}, module {name}'.format(
|
||||||
thread=threading.current_thread().name,
|
thread=threading.current_thread().name,
|
||||||
time=time.strftime('%c'),
|
time=time.strftime('%c'),
|
||||||
|
Loading…
Reference in New Issue
Block a user