View Single Post
Posts: 631 | Thanked: 837 times | Joined on May 2007 @ Milton, Ontario, Canada
#488
Originally Posted by Laughing Man View Post
The count-down area is blank.
I was working on something completely unrelated to this for the new version of the clock (when it gets done you guys are going to love it, some big changes coming!) when I noticed the same problem! Turns out I forgot a + sign on one line of code...

Try opening up ci_alarmNew.py, go to line 344 where it currently reads:
Code:
			if (mins < 10):
				countdownStr = "0"
			countdownStr = countdownStr + str(mins)
And update it to be:
Code:
			if (mins < 10):
				countdownStr = countdownStr + "0"
			countdownStr = countdownStr + str(mins)
That should fix the countdown problem (worked for mine at least)...