Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Util/NoteLooper.py
diff options
context:
space:
mode:
authorolipet <olpc@localhost.localdomain>2007-01-10 10:47:54 (GMT)
committer olipet <olpc@localhost.localdomain>2007-01-10 10:47:54 (GMT)
commite2ca3e74e023b052ff007693089f15a9bafb8bb7 (patch)
treea4d1f9b346d7907b18dadbed259acdf47f8736b6 /Util/NoteLooper.py
parent658e47e973f8790ca82be4ebd7da1a6347f5f37c (diff)
little save on load time
Diffstat (limited to 'Util/NoteLooper.py')
-rw-r--r--Util/NoteLooper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Util/NoteLooper.py b/Util/NoteLooper.py
index 1e9aba4..cb7691c 100644
--- a/Util/NoteLooper.py
+++ b/Util/NoteLooper.py
@@ -160,11 +160,11 @@ class NoteLooper:
def insert( self, notes):
def insertMany():
- print notes
+ #print notes
self.notes += [ ( notes[i][0], notes[i][1], '', 0 ) for i in xrange(len(notes)) ]
print '**************** insert done ********************'
self.notes.sort()
- print self.notes
+ #print self.notes
def insertFew():
for i in xrange(len(notes)):
t = (notes[i][0], notes[i][1],'',0)