Hi All,
Please look at the snippet below.
When I am running my module its giving me following error.
Using : Python 2.7, windows Env.
{{{
# User defined modules
try:
from scripts import precheck
from scripts import input
from scripts import validate
from scripts import logsetup
from scripts.constants import *
except ImportError, err_msg: ==> line 38
print("ERROR {0}".format(err_msg))
print("INFO Please verify the presence of above module, and restart the
installation")
sys.exit(1)
}}}
{{{
Output:
C:\> install.py -f input.xml
File " C:\>install.py", line 38
except ImportError, err_msg:
^
SyntaxError: invalid syntax
}}}
I checked the comma and spacing and didn't find any problem.
Any idea.?
Thanks
Nikunj
_______________________________________________
Tutor maillist - [email protected]
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor