Commit 78739fae authored by Simon Charette's avatar Simon Charette Committed by Claude Paroz
Browse files

[1.5.x] Fixed #19576 -- Use `six.with_metaclass` uniformously accross code base.

Backport of f58efd07 from master.
parent 9d6d0de7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -311,7 +311,7 @@ class ModelState(object):
        self.adding = True


class Model(six.with_metaclass(ModelBase, object)):
class Model(six.with_metaclass(ModelBase)):
    _deferred = False

    def __init__(self, *args, **kwargs):