From 1858e8ec2d39e43100917d151505cea532e34cb0 Mon Sep 17 00:00:00 2001 From: Christophe de Vienne Date: Sun, 12 Aug 2012 15:05:56 +0200 Subject: [PATCH] funcproxy now copy the function name --- wsme/api.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wsme/api.py b/wsme/api.py index 936b448..80e3186 100644 --- a/wsme/api.py +++ b/wsme/api.py @@ -64,6 +64,7 @@ def funcproxy(func): newfunc._is_wsme_funcproxy = True newfunc._original_func = func newfunc.__doc__ = func.__doc__ + newfunc.__name__ = func.__name__ return newfunc