34 plotName = args.get(
'plot',
'summary-weekly.gif')
36 filePath = os.path.join(webPlotDir,plotName)
37 if not os.path.exists(filePath):
38 return errorPage % plotName
39 lastUpdate = time.ctime(os.path.getctime(filePath))
40 return page % (lastUpdate,plotName)