flebber <flebber.c...@gmail.com> 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, t...@probo.com
Providenza & Boekelheide, Inc.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to