From 2c6392aa92aacb6c8e69a7277688599974ad70e6 Mon Sep 17 00:00:00 2001 From: Gaetan Delannay Date: Wed, 16 Feb 2011 16:10:59 +0100 Subject: [PATCH] appy.gen removed 'print' statement. --- gen/__init__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gen/__init__.py b/gen/__init__.py index cad3295..6830d4c 100644 --- a/gen/__init__.py +++ b/gen/__init__.py @@ -1996,9 +1996,7 @@ class Pod(Type): retrieved by calling pod to compute the result.''' rq = getattr(obj, 'REQUEST', None) res = getattr(obj, self.name, None) - if res and res.size: - print 'RETURNING FROZEN DOC' - return FileWrapper(res) # Return the frozen file. + if res and res.size: return FileWrapper(res) # Return the frozen file. # If we are here, it means that we must call pod to compute the file. # A Pod field differs from other field types because there can be # several ways to produce the field value (ie: output file format can be