From 1d5e4d7090b814eb7233071a71ab1a608ad3831f Mon Sep 17 00:00:00 2001 From: Michele Comitini Date: Mon, 15 Oct 2012 11:34:31 +0200 Subject: [PATCH] removed print --- gluon/custom_import.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gluon/custom_import.py b/gluon/custom_import.py index c03d5bc4..313e6495 100644 --- a/gluon/custom_import.py +++ b/gluon/custom_import.py @@ -60,7 +60,6 @@ def custom_importer(name, globals=None, locals=None, fromlist=None, level=-1): modules_prefix, globals,locals, [itemname], level) try: result = result or new_mod.__dict__[itemname] - print result except KeyError, e: raise ImportError, 'Cannot import module %s' % str(e) modules_prefix += "." + itemname