Windows events often repeat themselves and Windows tells you how many times. Unfortunately Zenoss sees each occurrence as a separate event. Here is how to rename the event to make Zenoss aware that this is just a duplicate of another event:
import re
evt.summary = re.sub('It has done this [0-9]+ time\(s\).', '', evt.message)