Skip to content

Commit

Permalink
new-style classes aren't new anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
hannosch committed Mar 25, 2012
1 parent 4028ed8 commit fdab9fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Products/PluginIndexes/FieldIndex/tests.py
Expand Up @@ -18,7 +18,7 @@
from Products.PluginIndexes.FieldIndex.FieldIndex import FieldIndex


class Dummy:
class Dummy(object):

def __init__(self, foo):
self._foo = foo
Expand Down
2 changes: 1 addition & 1 deletion src/Products/PluginIndexes/KeywordIndex/tests.py
Expand Up @@ -16,7 +16,7 @@
from Products.PluginIndexes.KeywordIndex.KeywordIndex import KeywordIndex


class Dummy:
class Dummy(object):

def __init__(self, foo):
self._foo = foo
Expand Down

0 comments on commit fdab9fc

Please sign in to comment.