From 94fcfd07929b38218e1abb3bd81ae2db76edf013 Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Sat, 12 Jun 2010 19:15:45 +0000 Subject: area text now handle correctly all the \n and other long messages --- src/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common.py') 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): -- cgit v1.2.3