From 14a14671c2bc1b1cee046d235f71ca21096b4e1c Mon Sep 17 00:00:00 2001 From: Ignacio Rodríguez Date: Fri, 06 Dec 2013 18:47:52 +0000 Subject: Fix function name --- diff --git a/stopwatch.py b/stopwatch.py index 00e9b13..2551837 100644 --- a/stopwatch.py +++ b/stopwatch.py @@ -260,7 +260,7 @@ class OneWatchView(): thread.start_new_thread(self._start_running, ()) - def actived(self): + def activated(self): return self._radiobutton.get_active() def get_number(self): @@ -491,7 +491,7 @@ class GUIView(): def get_all(self): radiobutton_number = 0 for view in self._views: - if view.actived(): + if view.activated(): radiobutton_number = view.get_number() break -- cgit v0.9.1