1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From ab233b04246aa7ad937c71df53d0e2ffcec2df9a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ionel=20Cristian=20M=C4=83rie=C8=99?= <contact@ionelmc.ro>
Date: Wed, 26 Feb 2014 15:34:16 +0000
Subject: Oooops.... remove debug print.
Origin: upstream, https://github.com/ionelmc/python-tblib/commit/a2bd19dcbc197124ef8a213501c5eb2aa1cbf231
Last-Update: 2014-02-26
Patch-Name: remove-debug-print.patch
---
src/tblib/decorators.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/tblib/decorators.py b/src/tblib/decorators.py
index c18216e..d2d55ab 100644
--- a/src/tblib/decorators.py
+++ b/src/tblib/decorators.py
@@ -39,5 +39,4 @@ def apply_with_return_error(args):
apply_with_return_error((func, 1, 2, 3)) - this will call func(1, 2, 3)
"""
- print args[0]
return args[0](*args[1:])
|