Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0adb05e

Browse files
committed
Minor fix for Python 2.x compatibility.
1 parent f2d8547 commit 0adb05e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/testing/decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def failer(*args, **kwargs):
4949
return nose.tools.make_decorator(f)(failer)
5050
return known_fail_decorator
5151

52-
class CleanupTest:
52+
class CleanupTest(object):
5353
@classmethod
5454
def setup_class(cls):
5555
cls.original_units_registry = matplotlib.units.registry.copy()

0 commit comments

Comments
 (0)