/ "Anthony Schellenberg" <[EMAIL PROTECTED]> wrote:
| I tried your suggestions with pluck-comics.py but I'm not able to get
| it to work. I always get this error when running it:
|
| Traceback <innermost last>:
| File "c:\comics\pluck-comics.py", line 57 in ?
| for name in os.listdir<libdir>:
| OSError: [Errno 3] No such process
|
| Any ideas? Thanks
You missed the configuration :-)
<libdir> is to be replaced with the path to where pluck is located,
in your case "c:\comics".
so it should be something like
for name in os.listdir("c:/comics/"):
argv[0] might be an idea to use.. will throw an eye or two at it..
/Andy