summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Szakmeister <john@szakmeister.net>2014-05-20 06:41:10 -0400
committerJohn Szakmeister <john@szakmeister.net>2014-05-20 06:41:10 -0400
commit71b5ee2161289f56318308f070fb9e91fa6017b1 (patch)
tree53c254f9ade72ee41882da4888f671dffd45a4d8
parentcfc24b3ecb2c526891de343714a177281378f2d6 (diff)
downloadnose-71b5ee2161289f56318308f070fb9e91fa6017b1.tar.gz
Switch ContextSuite to use super() to keep the init-sequence correct.
-rw-r--r--nose/suite.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nose/suite.py b/nose/suite.py
index f3ccd18..a831105 100644
--- a/nose/suite.py
+++ b/nose/suite.py
@@ -155,7 +155,7 @@ class ContextSuite(LazySuite):
self.has_run = False
self.can_split = can_split
self.error_context = None
- LazySuite.__init__(self, tests)
+ super(ContextSuite, self).__init__(tests)
def __repr__(self):
return "<%s context=%s>" % (