mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2025-12-08 14:54:28 +00:00
[svn r6901] Modified the expo members list, and added three new photos. Yes, they're mostly pretty poor photos, but if you want to select better ones yourselves, hey, just send them to me.
This commit is contained in:
@@ -8,7 +8,7 @@ recordholders = []
|
||||
output = ""
|
||||
|
||||
lines = sys.stdin.readlines()
|
||||
headcounts_byyear = [0]*(len(lines[0].split(","))-5)
|
||||
headcounts_byyear = [0]*(len(lines[0].split(","))-4)
|
||||
|
||||
for r in lines[1:]:
|
||||
r = r.replace("\n","")
|
||||
@@ -40,7 +40,11 @@ for r in lines[1:]:
|
||||
if(years[y]=='-1'):
|
||||
m = '<span class="didntcave">'+ m + '</span>'
|
||||
else:
|
||||
headcounts_byyear[y] += 1
|
||||
try:
|
||||
headcounts_byyear[y] += 1
|
||||
except IndexError:
|
||||
sys.stderr.write(repr(r) +":::"+ str(y) + "\n")
|
||||
raise
|
||||
output += '<td class="nonempty">' + m + '</td>'
|
||||
else:
|
||||
output += '<td></td>'
|
||||
|
||||
Reference in New Issue
Block a user