Mark wrote:
> and i`ve put it in tel.py (just the same as in the sample) than chmod
> it to 777 (just to make sure it isn`t a permission issue) and than i
> run it with: ./tel.py
> now this is the error that i get:
>
> Traceback (most recent call last):
> File "./tel.py", line 12, in
> for
looks like it is expecting command line agrs that are not there.
put this at the top of your code to see what's going on
import sys
print sys.argv
remembering that the first element printed is sys.argv[0]
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
Behalf Of M