From 09cf5feee50ce9508cc8e9223626f841eab996d3 Mon Sep 17 00:00:00 2001 From: LexManos Date: Wed, 10 Jul 2013 15:23:21 -0700 Subject: [PATCH] Kill mcp's truncate method, for more useful logs. --- fml/commands.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/fml/commands.patch b/fml/commands.patch index 0a8bfa5f8..5713ab6f8 100644 --- a/fml/commands.patch +++ b/fml/commands.patch @@ -1,5 +1,16 @@ --- commands.py +++ commands.py +@@ -126,8 +126,8 @@ + + + def truncate(text, length): +- if len(text) > length: +- return text[:length] + '...' ++ #if len(text) > length: ++ # return text[:length] + '...' + return text + + @@ -139,6 +139,8 @@ fieldnames = csvreader.fieldnames return set(fieldnames)