removed two left-over debug statements

This commit is contained in:
Philip Eisenlohr 2012-09-13 08:46:18 +00:00
parent 3d14c5b234
commit 8078585ce8
1 changed files with 0 additions and 2 deletions

View File

@ -131,7 +131,6 @@ for file in files:
for line in content:
for current in map(int,line.split()):
print 'current',current,'former',former
if current == former+1 and start+reps == former+1:
type = 'to'
reps += 1
@ -145,7 +144,6 @@ for file in files:
'of': '%i of %i\n'%(reps,former),
}[type]
file['output'].write(output)
print 'did output',type,output
type = '.'
start = current
reps = 1