How do I include a shell variable in my script?

2008-07-29 Thread laredotornado
Hi, I'm running a Python script on a Solaris 9 machine, invoking the Python script from ksh, if that matters. There is an enviornment variable, $JAVA_HOME, that I would like to include in my script, replacing "/path/to/java/home'" with the value of $JAVA_HOME. java_home='/path/to/java/home' How

Syntax error in my script

2008-07-30 Thread laredotornado
Hi, This might be more relevant for another group, but since this is a Python script, thought I'd start here. I'm trying to write a WLST script for WebLogic 9.2. I coped one directly from WebLogic's site (http://e-docs.bea.com/wls/docs90/config_scripting/ using_WLST.html#1078952), but I'm getting

Re: Syntax error in my script

2008-07-30 Thread laredotornado
On Jul 30, 11:26 am, Alan Franzoni <[EMAIL PROTECTED]> wrote: > laredotornadowas kind enough to say: > > [cut] > > Indentation counts in Python. You're probably doing something wrong with > whitespace/tab/carriage return. > > -- > Alan Franzoni <[EMAIL PROTECTED]> > - > Remove .xyz from my email in

Possible to have multiple loop variables?

2008-07-30 Thread laredotornado
I don't know why I thought this would work, but I would like to have 3 variables in my for loop per iteration. Those familiar will know that this ms1 = {'managed1':7019:8020,'managed2':7020:8021} for m, lp, ssl_lp in ms1.items(): managedServer = create(m,'Server') print 'creating mana