From 3898d861144dd77d59ba4b45f90afed243103541 Mon Sep 17 00:00:00 2001 From: Agustin Zubiaga Date: Fri, 10 Feb 2012 16:31:18 +0000 Subject: Code fixes Signed-off-by: Agustin Zubiaga --- (limited to 'readers.py') diff --git a/readers.py b/readers.py index 6858c60..7c87fdb 100644 --- a/readers.py +++ b/readers.py @@ -3,8 +3,6 @@ # readers.py by: # Agustin Zubiaga -# Gonzalo Odiard -# Manuel QuiƱones # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -30,13 +28,13 @@ class StopWatch(): def get_stopwatchs_with_marks(self): count = 0 - list = [] + stopwatchs_list = [] for i in self.data[-1]: if i: count += 1 - list.append([count, self.data[1][count - 1]]) + stopwatchs_list.append([count, self.data[1][count - 1]]) - return list, count + return stopwatchs_list, count def get_stopwatch_name(self, num=0): return self.data[1][num] -- cgit v0.9.1