Trying to write a python script to batch Aggregate a bunch of different rasters. get a Parsing Error Syntax error for line 11.
# Batch Aggregate raster tool
import arcpy
from arcpy import env
from arcpy.sa import *
env.workspace = r"C:\rasters"
out_workspace = r"C:\rasters\agg"
rasters = arcpy.ListRasters()
for raster in rasters
outAggreg = Aggregate(raster, 10, "MEAN")
outAggreg.save(out_workspace, raster + "_agg")
rasters
. – Paul Jul 13 '13 at 20:26