flebber <[email protected]> wrote: > >okay thanks I thought that when I set content here > >def getPDFContent(path): > content = "C:\Components-of-Dot-NET.pdf"
You have a backslash problem here. You need need to say:
content = "C:\\Components-of-Dot-NET.pdf"
or
content = "C:/Components-of-Dot-NET.pdf"
or
content = "C:/Components-of-Dot-NET.pdf"
--
Tim Roberts, [email protected]
Providenza & Boekelheide, Inc.
--
http://mail.python.org/mailman/listinfo/python-list
