From d90df91aef2aaaf5ead135466d6fea24cc6c32e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Cort=C3=A9z?= Date: Tue, 14 Apr 2015 09:03:16 -0500 Subject: [PATCH] AttributeError fixed from pull request #10 --- src/extra/SoundsTutorial/soundsTutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extra/SoundsTutorial/soundsTutorial.py b/src/extra/SoundsTutorial/soundsTutorial.py index ff469ebf..4ef2adce 100644 --- a/src/extra/SoundsTutorial/soundsTutorial.py +++ b/src/extra/SoundsTutorial/soundsTutorial.py @@ -24,7 +24,7 @@ class soundsTutorial(object): log.debug("Searching sound files...") [self.files.append(i[0]) for i in soundsTutorial_constants.actions] log.debug("Alphabetizing actions...") - actions=reverse_sort.reverse_sort(actions) + actions=reverse_sort.reverse_sort(self.actions) log.debug("Creating dialog...") self.dialog = UI.soundsTutorialDialog(self.actions) widgetUtils.connect_event(self.dialog.play, widgetUtils.BUTTON_PRESSED, self.on_play)