aboutsummaryrefslogtreecommitdiff
path: root/RecordTimer.py
diff options
context:
space:
mode:
Diffstat (limited to 'RecordTimer.py')
-rw-r--r--RecordTimer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/RecordTimer.py b/RecordTimer.py
index f8e0dbd7..aeff9d05 100644
--- a/RecordTimer.py
+++ b/RecordTimer.py
@@ -192,8 +192,8 @@ class RecordTimerEntry(timer.TimerEntry, object):
try:
f = open(self.Filename + ".ts.meta", "w")
f.write(rec_ref.toString() + "\n")
- f.write(self.name + "\n")
- f.write(self.description + "\n")
+ f.write(self.name.replace("\n", "") + "\n")
+ f.write(self.description.replace("\n", "") + "\n")
f.write(str(self.begin) + "\n")
f.write(' '.join(self.tags))
f.close()