diff --git a/SWIG/Examples/test-suite/python/director_thread_runme.py b/SWIG/Examples/test-suite/python/director_thread_runme.py index d3427dff0..e66817e17 100644 --- a/SWIG/Examples/test-suite/python/director_thread_runme.py +++ b/SWIG/Examples/test-suite/python/director_thread_runme.py @@ -5,7 +5,7 @@ class Derived(Foo) : Foo.__init__(self) def do_foo(self): - self.val -= 1 + self.val = self.val - 1 d = Derived()