summaryrefslogtreecommitdiff
path: root/src/common.py
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-06-12 19:15:45 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-06-12 19:15:45 +0000
commit94fcfd07929b38218e1abb3bd81ae2db76edf013 (patch)
tree9f59516d89db7547c1ecfd6ef741e248872743c1 /src/common.py
parent5e7bb342e66e88480effbbb90ad6c2f185f9c589 (diff)
downloadpoezio-94fcfd07929b38218e1abb3bd81ae2db76edf013.tar.gz
poezio-94fcfd07929b38218e1abb3bd81ae2db76edf013.tar.bz2
poezio-94fcfd07929b38218e1abb3bd81ae2db76edf013.tar.xz
poezio-94fcfd07929b38218e1abb3bd81ae2db76edf013.zip
area text now handle correctly all the \n and other long messages
Diffstat (limited to 'src/common.py')
-rw-r--r--src/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.py b/src/common.py
index 1dabcc06..063ad424 100644
--- a/src/common.py
+++ b/src/common.py
@@ -52,7 +52,7 @@ def debug(string):
a CLI software
"""
fdes = open("debug", 'a')
- fdes.write(string+'\n')
+ fdes.write(string)
fdes.close()
def exception_handler(type_, value, trace):