diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-01-19 01:10:09 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-01-19 01:10:09 +0000 |
| commit | d3fd31aeea4a8272671fbe0ccc92c117c48ae5e8 (patch) | |
| tree | df79c0a5d0990ea65b5d37b6e11f4bb1bee6dc43 /RecordTimer.py | |
| parent | dc63a7ead6dfe2e55bc397f1c98fba8da246c4da (diff) | |
| download | enigma2-d3fd31aeea4a8272671fbe0ccc92c117c48ae5e8.tar.gz enigma2-d3fd31aeea4a8272671fbe0ccc92c117c48ae5e8.zip | |
fix bluescreen on end of timer with afterevent standby (typo) :(
Diffstat (limited to 'RecordTimer.py')
| -rw-r--r-- | RecordTimer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RecordTimer.py b/RecordTimer.py index 27967629..01bb5c72 100644 --- a/RecordTimer.py +++ b/RecordTimer.py @@ -257,7 +257,7 @@ class RecordTimerEntry(timer.TimerEntry): NavigationInstance.instance.stopRecordService(self.record_service) self.record_service = None if self.afterEvent == AFTEREVENT.STANDBY: - if not Screen.Standby.inStandby: # not already in standby + if not Screens.Standby.inStandby: # not already in standby Notifications.AddNotificationWithCallback(self.sendStandbyNotification, MessageBox, _("A finished record timer wants to set your\nDreambox to standby. Do that now?"), timeout = 20) if self.afterEvent == AFTEREVENT.DEEPSTANDBY: if not Screens.Standby.inTryQuitMainloop: # not a shutdown messagebox is open |
