Fix bug in break interval

This commit is contained in:
Gobinath 2016-10-23 17:54:12 +05:30
parent 3cd6ba4e82
commit 6d231f9088
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
safeeyes (1.0.5-1) xenial; urgency=medium
safeeyes (1.0.6-1) xenial; urgency=medium
* Fixing seconds instead of mnutes bug
* Bug fixes for Ubuntu 14.04 and keyboard lock during break
* Reducing minimal Python requirement

View File

@ -199,7 +199,7 @@ class SafeEyesCore:
Schedule the job
"""
def schedule_job(self):
self.scheduled_job_id = self.scheduler.add_interval_job(self.scheduler_job, seconds=self.break_interval)
self.scheduled_job_id = self.scheduler.add_interval_job(self.scheduler_job, minutes=self.break_interval)
"""
Check for full-screen applications