aboutsummaryrefslogtreecommitdiff
path: root/RecordTimer.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-04-13 13:22:34 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-04-13 13:22:34 +0000
commit02306d1c48aa6978d69d1036b9655408dcfb3f72 (patch)
tree863b634c9bdd5ebd12538b8450a6b7a9a5b23b92 /RecordTimer.py
parentd59d5deafcc782ae5f94309e54d43374314870e8 (diff)
downloadenigma2-02306d1c48aa6978d69d1036b9655408dcfb3f72.tar.gz
enigma2-02306d1c48aa6978d69d1036b9655408dcfb3f72.zip
fix try/except
Diffstat (limited to 'RecordTimer.py')
-rw-r--r--RecordTimer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/RecordTimer.py b/RecordTimer.py
index eb9de6fb..6c942fb1 100644
--- a/RecordTimer.py
+++ b/RecordTimer.py
@@ -109,7 +109,7 @@ class RecordTimerEntry(timer.TimerEntry):
f.write(self.description + "\n")
f.write(str(self.begin) + "\n")
f.close()
- except:
+ except IOError:
self.log(4, "failed to write meta information")
return True