aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/utils/tracking/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'debug_toolbar/utils/tracking/__init__.py')
-rw-r--r--debug_toolbar/utils/tracking/__init__.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/debug_toolbar/utils/tracking/__init__.py b/debug_toolbar/utils/tracking/__init__.py
index 6d4b0e3..766c248 100644
--- a/debug_toolbar/utils/tracking/__init__.py
+++ b/debug_toolbar/utils/tracking/__init__.py
@@ -51,8 +51,7 @@ def _replace_function(func, wrapped):
module = import_module(func.__module__)
setattr(module, func.__name__, wrapped)
elif getattr(func, 'im_self', None):
- # TODO: classmethods
- raise NotImplementedError
+ setattr(func.im_self, func.__name__, classmethod(wrapped))
elif hasattr(func, 'im_class'):
# for unbound methods
setattr(func.im_class, func.__name__, wrapped)