Code is at bottom. I will also send you an MXD and a PDF which exported with errors so you can get an idea of what is going on.
I think I have installed SP1... I tried to, and assume it worked properly. Is there an easy way to verify, just in case?
import arcpy, glob, os
filelist = glob.glob('H:\\FINANCE\\Analysis\\ESRI\\MXD Files\\Atlas Project Templates\\Seans\\*.mxd')
for mxdfile in filelist:
mxdname = os.path.basename(mxdfile)
mxd = arcpy.mapping.MapDocument(mxdfile)
arcpy.mapping.ExportToPDF(mxd, r"H:\\FINANCE\\Analysis\\ESRI\\MXD Files\\Atlas Project Templates\\Seans\\PDFs\\"+mxdname, image_quality = 'normal',picture_symbol = 'VECTORIZE_BITMAP', georef_info = False)
print "PDF Exported: ", mxdname
del mxd
Note: My code is not displaying tabbed over lines correctly here, but it is correct in that sense.